singrdk/base/Interfaces/Bartok/ArgIterator.csi

22 lines
466 B
Plaintext
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
namespace System
{
public struct ArgIterator
{
#if !DONT_DO_BARTOK
private IntPtr * NextArg;
private int RemainingArgs;
#endif
public ArgIterator(RuntimeArgumentHandle arglist);
public int GetRemainingCount();
public TypedReference GetNextArg();
public RuntimeTypeHandle GetNextArgType();
}
}