You can use the TlbImp.exe tool
Use the Visual Studio Command Line and type the following:
TlbImp YourCPPDll.dll /out:C:\DotNetWrapper.dll
Where DotNetWrapper.dll is the assembly that will be Generated.
If you want to add a strong name to your assembly add the following
flag to the command:
/keyFile:YourStrongName.snk
Hope this helps
You can use the TlbImp.exe tool
Use the Visual Studio Command Line and type the following:
TlbImp YourCPPDll.dll /out:C:\DotNetWrapper.dll
Where DotNetWrapper.dll is the assembly that will be Generated.
If you want to add a strong name to your assembly add the following
flag to the command:
/keyFile:YourStrongName.snk
Hope this helps