InterviewSolution
| 1. |
How To Make A Net Component Talk To A Com Component? |
|
Answer» To enable the communication between COM and .NET components, the .NET Framework generates a COM Callable Wrapper (CCW). The CCW enables communication between the calling COM CODE and the MANAGED code. It also handles CONVERSION between the data types, as well as other MESSAGES between the COM types and the .NET types. To enable the communication between COM and .NET components, the .NET Framework generates a COM Callable Wrapper (CCW). The CCW enables communication between the calling COM code and the managed code. It also handles conversion between the data types, as well as other messages between the COM types and the .NET types. |
|