What is RCW

Q

How can we use COM Components in .NET?

✍: Guest

A

.NET components communicate with COM using RCW (Runtime Callable Wrapper). Following are the ways with which you can generate RCW :-

ã Adding reference in Visual Studio.net. See figure below (Adding reference using VS.NET 2005). Wrapper class is generated and placed in the gBINh directory.



ã Using Type library import tool. Tlbimp.exe yourname.dll.
ã Using interopservices.System.runtime.Interopservices namespace contains class TypeLib Converter which provides methods to convert COM classes and interface in to assembly metadata.
ã Make your custom wrappe rs.If your COM component does not have type library then the only way to communicate is writing custom wrappers. That means communicating directly with COM components.

2007-10-22, 4982👍, 0💬