1

我正在编写 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 函数的正确方法是什么?

4

1 回答 1

5

它需要使用未记录的 __arglist 关键字:

 var k = TestSentinel.Sum(__arglist(1));
 var l = TestSentinel.Sum(__arglist(1, 2, 3));

这不是很有用,最好专注于 params 数组。

于 2013-10-09T10:25:43.913 回答