我正在编写 ILAsm 函数,它接收可变数量的参数并返回它们的总和:
.class public auto ansi TestSentinel
{
.method public static vararg unsigned int64 Sum( /* all arguments are optional */ )
{
.locals init( value class [mscorlib]System.ArgIterator Args,
unsigned int64 Sum,
int32 NumArgs )
...
ldloc Sum
ret
}
}
我的 dll 编译成功,但我无法从 C# 代码调用此函数。当我用
var k = TestSentinel.Sum(1);
我收到错误消息:
Error The best overloaded method match for 'TestSentinel.Sum(__arglist, ...)' has some invalid arguments
并且使用任何其他数量的参数,我都会收到wrong argument number
消息。调用 ILAsm 函数的正确方法是什么?