Possible to use a .NET C# dll in unmanaged C++ program?
Is it possible to call a C# dll in a unmanaged C++ program? If this is possible, what function calls in C++ to use?
This is what I've tries so far:
1. LoadLibrary
2. GetModuleFileName
3. GetProcAddress
GetProcAddress returns null.
Thanks much for your help!
[303 byte] By [
Calko] at [2007-11-18 13:37:06]

# 1 Re: Possible to use a .NET C# dll in unmanaged C++ program?
What you're trying to do may be possible, but it should just be simpler to use tlbexp and a COM interface to access the C# object.