I have got a native DLL that I wanted to use via COM in my .NET/C# project. I am a little confused on the steps to follow in order to use it in my C# project. Here is what I understand, please correct me wherever I am wrong.
- Register COM DLL on the machine using regsvr32.
- Somehow get the interop DLL(RCW) from that native DLL. Not sure how to do that?
- Add reference to interop DLL in .NET/C# project
- Starting referencing calls from COM dll.