Export Managed Code as Unmanaged by Jim Teeuwen
I read your article on Export Managed Code as Unmanaged. It was very interesting.
So I wanted to generated unmanaged dll from unmanged dll and use unmanaged dll from my c++ project. It was successfull until creating unmanaged dll. But I got stuck on using it from c++ project. I created .lib and .h from unmanged dll using third party software and I included the .h file in my c++ project. But when I tried to reference the SayHello function, it couldn't find the function. Do you have any idea how I can use unmanaged dll from c++ doing implicit linking or even explicit linking?
Thank you.
Joanne