假设我有一个包含以下代码的 ILAsm 库:
.assembly extern mscorlib{}
.assembly TestMe{}
.module TestMe.dll
.method public static void PrintMe() cil managed
{
ldstr "I'm alive!"
call void [mscorlib]System.Console::WriteLine(string)
ret
}
如何从 C# 代码调用全局 PrintMe() 函数?