我Reflection.Emit
用来做一个exe。到目前为止,我已经可以创建一个有效的 CIL PE。(它只是向 Console.WriteLine 输出一个字符串。)但是 main 方法的参数是自动生成的(A_0)。
.method public static void Main(string[] A_0) cil managed
{
.entrypoint
// Code size 12 (0xc)
.maxstack 1
IL_0000: nop
IL_0001: ldstr "Cafe con pan"
IL_0006: call void [mscorlib]System.Console::WriteLine(string)
IL_000b: ret
} // end of method Program::Main
将其与相应 C# 程序中的代码进行对比
.method private hidebysig static void Main(string[] args) cil managed
{
.entrypoint
// Code size 13 (0xd)
.maxstack 8
IL_0000: nop
IL_0001: ldstr "Cafe con pan"
IL_0006: call void [mscorlib]System.Console::WriteLine(string)
IL_000b: nop
IL_000c: ret
} // end of method Program::Main
参数名称是 args。我怎样才能给论点命名?我用于使该方法看起来像这样的代码:
Il = System.reflection.Emit
Re = System.Reflection
tb = Reflection.Emit.TypeBuilder
Il.MethodBuilder meth = tb.DefineMethod(
"Main", // name
Re.MethodAttributes.Public | Re.MethodAttributes.Static,
// method attributes
typeof(void), // return type
new Type[] { typeof(String[]) }); // parameter types
Il.ILGenerator methIL = meth.GetILGenerator();
methIL.Emit(Il.OpCodes.Nop);
methIL.Emit(Il.OpCodes.Ldstr, "Cafe con pan");
Type [] args = new Type []{typeof(string)};
Re.MethodInfo printString = typeof(Console).GetMethod("WriteLine", args);
methIL.Emit(Il.OpCodes.Call, printString);
methIL.Emit(Il.OpCodes.Ret);
我已经检查了 TypeBuilder.DefineMethod
文档是否有任何线索可以做到这一点,因为它是拥有此类信息的合乎逻辑的地方,但无济于事。
有人有建议吗?