ArgIterator.GetNextArg 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回变长参数列表中的下一参数。
重载
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
参数
标识要检索的参数类型的运行时类型句柄。
返回
作为 TypedReference 对象的下一参数。
- 属性
例外
尝试在列表结尾以外进行读取。
其余参数的指针为零。
注解
迭代器将自动推进到下一个参数。