据我所知,我可以使用反转的P / Invoke调用C#从C ++。 反转的P / Invoke是简单的情况下:
- 创建你管理(C#)类。
- 创建一个C ++ / CLI(原托管C ++)类库项目。 使用这个(通过引用大概)来调用托管C#类。
- 从调用本机C与C ++ / CLI ++编写代码。
问题:
- 它是否正确?
- 在步骤2中创建的DLL被称为混合模式DLL?
- 有C ++ / CLI完全取代托管C ++就MS而言?
- COM是使用这种方法完全避免?
- 在什么情况下会被创建的CLR和运行,以及由何人?
提前致谢
请注意,你也可以做的C#DLL导出静态方法,其工作基本相同,在C ++ / CLI的出口IL往返。 然而,这始终是一个编译后的一步,它也有一些注意事项 (其中你的C ++ / CLI出口有太多,顺便说一句)。
您可以ILDASM两个C#和C ++ / CLI的DLL看到出口怎么都不要; 它是这样的(从在网络上的样本 ):
// unmexports.il
// Compile with : ilasm unmexports.il /dll
assembly extern mscorlib {}
..assembly UnmExports {}
..module UnmExports.dll
// This flag is important
..corflags 0x00000002
// This instructs the CLR to create a marshaling thunk for the unmanaged caller
..vtfixup [1] int32 fromunmanaged at VT_01
..data VT_01 = int32(0)
..method public static void foo()
{
..vtentry 1:1
..export [1] as foo
ldstr "Hello from managed world"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
随着ILASM 2.0你需要更少的代码,因为它可以通过自身产生的大部分黏糊糊的。 现在只有在真正需要.EXPORT指令。
// unmexports.il
// Compile with : ilasm unmexports.il /dll
.assembly extern mscorlib { auto }
.assembly UnmExports {}
.module UnmExports.dll
.method public static void foo()
{
.export [1] as foo
ldstr "Hello from managed world"
call void [mscorlib]System.Console::WriteLine(string)
ret
}