Is very few on the internet that I found about calling managed C# code from unmanaged c++. On microsoft website,
http://support.microsoft.com/kb/828736, I follow this tutorial, but I got stuck on this:
Replace the following lines of code in the AssemblyInfo.cs file[assembly: ComVisible(false)]
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("")]
with the following.[assembly: ComVisible(true)]
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("..\\..\\MyKeyFile.SNK")]
because in my Assembly file, it doesn't have the last two lines:
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile("..\\..\\MyKeyFile.SNK")]
I did create the strong name for the class library, but it doesn't show in the last two lines...
Anyone has any suggestion?