Initializes a new instance of the ArgIterator class that points at the first argument that is not statically declared.
[To be supplied.]
[Visual Basic] Overloads Public Sub New(RuntimeArgumentHandle)
[C#] public ArgIterator(RuntimeArgumentHandle);
[C++] public: ArgIterator(RuntimeArgumentHandle);
[JScript] public function ArgIterator(RuntimeArgumentHandle);
Initializes a new instance of the ArgIterator class that points to the specified argument within the specified argument list. If the function takes a fixed number of required arguments followed by a variable number of optional arguments, this constructor would be used to point to the last fixed argument so that a call to the GetNextArg method would retrieve the first variable argument.
[Visual Basic] Overloads Public Sub New(RuntimeArgumentHandle, Int32*)
[C#] public ArgIterator(RuntimeArgumentHandle, Int32*);
[C++] public: ArgIterator(RuntimeArgumentHandle, Int32*);
[JScript] public function ArgIterator(RuntimeArgumentHandle, Int32*);
ArgIterator Structure | ArgIterator Members | System Namespace