ArgIterator.GetNextArg 方法

定义

返回变长参数列表中的下一参数。

重载

GetNextArg()

返回变长参数列表中的下一参数。

GetNextArg(RuntimeTypeHandle)

返回变长参数列表中具有指定类型的下一个参数。

GetNextArg()

Source:
ArgIterator.cs
Source:
ArgIterator.cs
Source:
ArgIterator.cs

重要

此 API 不符合 CLS。

返回变长参数列表中的下一参数。

public:
 TypedReference GetNextArg();
[System.CLSCompliant(false)]
public TypedReference GetNextArg ();
[<System.CLSCompliant(false)>]
member this.GetNextArg : unit -> TypedReference
Public Function GetNextArg () As TypedReference

返回

作为 TypedReference 对象的下一参数。

属性

例外

尝试在列表结尾以外进行读取。

注解

迭代器将自动推进到下一个参数。

适用于

GetNextArg(RuntimeTypeHandle)

Source:
ArgIterator.cs
Source:
ArgIterator.cs
Source:
ArgIterator.cs

重要

此 API 不符合 CLS。

返回变长参数列表中具有指定类型的下一个参数。

public:
 TypedReference GetNextArg(RuntimeTypeHandle rth);
[System.CLSCompliant(false)]
public TypedReference GetNextArg (RuntimeTypeHandle rth);
[<System.CLSCompliant(false)>]
member this.GetNextArg : RuntimeTypeHandle -> TypedReference
Public Function GetNextArg (rth As RuntimeTypeHandle) As TypedReference

参数

rth
RuntimeTypeHandle

标识要检索的参数类型的运行时类型句柄。

返回

作为 TypedReference 对象的下一参数。

属性

例外

尝试在列表结尾以外进行读取。

其余参数的指针为零。

注解

迭代器将自动推进到下一个参数。

适用于