I have a C# COM DLL and I want to call its methods throught c++ methods.
How do I make this?
I have a C# COM DLL and I want to call its methods throught c++ methods.
How do I make this?
Ask VisualStudio to generate the typelib or use regasm.exe /tlb
to generate the typelib, then import it into the C++ project with #import
directive.