I am planning to use various objects that are exposed as COM objects. To make them easier to use, I'd like to wrap them as C# objects. What is the best approach for this?
A COM object exposes a set of interfaces that the COM client uses to access the services of the object. The client must communicate with a COM object through its interfaces. In the COM paradigm, the client never operates on a reference to an object, but only on a reference to one of its interfaces.
Component Object Model (COM) is a method to facilitate communication between different applications and languages. COM is used by developers to create re-usable software components, link components together to build applications, and take advantage of Windows services.
You can launch a command prompt by pressing "Windows Key-R," typing "cmd" and pressing "Enter." Select the command prompt window, type the command "route print" and press "Enter" to display the "Interface List" and system routing tables.
If the library is already registered, you can perform the following steps to have Visual Studio generate an interop assembly for you:
This will be a class or set of C# classes that wrap all of the COM interface stuff with a normal C# class. Then you just use it like any other C# library. If the import of the reference worked well, you can explore it like any other reference and the methods/structs/classes/constants should show up in that namespace and intellisense.
This will get you started, at least. If this is deployed in a corporate environment or one you can control, this may be all you need.
You can (initially) just import the reference. If you need more control (or get errors from VS's import) you can use tlbimp in the windows sdk. This will create the interop assemblies. You can get class definitions from metadata.
EDIT: This is actually a lot more complicated if you want to work with 64 bit
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With