我正在编写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函数的正确方法是什么?
答案 0 :(得分:5)
它需要使用未记录的__arglist关键字:
var k = TestSentinel.Sum(__arglist(1));
var l = TestSentinel.Sum(__arglist(1, 2, 3));
这不是很有用,而是更好地专注于params数组。