I am trying to use a DLL written in C++ and compiled in Visual Studio 6 in .NET. Unfortunately, I cannot reference the DLL in .NET because it is not COM compliant.
I am not very familiar with Visual Studio 6 and was hoping there is a fairly easy way to compile C++ code into a COM compliant DLL.

How do you compile a COM compliant C++ DLL in Visual Studio 6?
Thomas S. Andersen
arkiboys
R_Vogel
asisurfer
Thanks for the suggestion.
I would prefer to create a COM compliant DLL instead though so I don't have to worry about function signatures in order to call the functions in .NET. Is this possible, or is DllImport the only way