1. 非托管C++代码调用C#编写的dll方法 
  2.  
  3. CLR VIA C#这本书里面的内容,在网上好像很少关于这方面的内容,贴出来以后留着看。 
  4.  
  5. C#调用C++编写的dll,一般都是直接用dllimport,这个资料很多。C++调用C#编写的dll,一般方法都是先用托管C++将C#的dll进行一次封装,然后由非托管C++调用封装好的dll。 
  6.  
  7. CLR VIA C#在讲寄宿和应用程序域的内容时,提供了一个非托管C++直接调用的方法。原理就是,在非托管代码中手动启动CLR加载应用程序域来运行托管的dll,从而调用其中的方法。 
  8.  
  9. 代码如下: 
  10.  
  11. #include <Windows.h> 
  12. #include <MSCorEE.h> 
  13. #include <stdio.h> 
  14. #pragma comment(lib,"mscoree.lib") 
  15. int _tmain(int argc, _TCHAR* argv[]) 
  16.     ICLRRuntimeHost *pClrHost; 
  17.     HRESULT hr = CorBindToRuntimeEx(NULL, 
  18.  
  19.     NULL,0, 
  20.  
  21.     CLSID_CLRRuntimeHost, 
  22.  
  23.     IID_ICLRRuntimeHost, 
  24.  
  25.     (PVOID*)&pClrHost); 
  26.  
  27.     //启动CLR 
  28.     pClrHost->Start(); 
  29.     DWORD retVal=0; 
  30.  
  31.     //将dll加载到默认应用程序域中,并调用其中的方法 
  32.     hr = pClrHost->ExecuteInDefaultAppDomain(L"test.dll",L"test.MyType",L"TestMethod"
  33.         L"TestStringParam",&retVal); 
  34.     if(S_OK==hr) 
  35.         wprintf(L"Managed code returned %d\n",retVal); 
  36.     else 
  37.         wprintf(L"failed to call csharp dll.\n"); 
  38.     getchar(); 
  39.      return 0; 
  40.  
  41. C#编写的test.dll如下: 
  42.  
  43. namespace test 
  44.     class MyType 
  45.     { 
  46.         public static Int32 TestMethod(String s) 
  47.         { 
  48.             Console.WriteLine("Managed assembly: {0}",s); 
  49.             return s.Length; 
  50.         } 
  51.     } 
  52.  
  53.  
  54. 代码输出: 
  55.  
  56. Managed assembly: TestStringParam 
  57. Managed code returned 15 
  58.  
  59. 可以看到c++成功调用了test.DLL中的方法,并且可以传入参数和接收返回值。 
  60.  
  61. 想深入的了解,可以看下面的内容: 
  62.  
  63. http://msdn.microsoft.com/zh-cn/vstudio/9x0wh2z3.aspx