P
Peter Steele
Anyone have a good reference on how to use a DLL written in C# in unmanaged
C++ code?
C++ code?
Peter Steele said:Anyone have a good reference on how to use a DLL written in C# in
unmanaged
C++ code?
Peter Steele said:I have a C++ DLL that I need to access from a VC++ application. Whatever
way
accomplishes this in the easiest fashion is what I want to do...
Niki Estner said:I thought it was a C# DLL?
Anyway: COM interop is quite easy if you are already familiar with COM, and
if performance doesn't matter (too much).
Otherwise, create a managed C++ DLL, which can export ordinary DLL functions
(can be used like any other DLL from your VC++ app); These functions can in
turn call the managed C# code.
Niki