singrdk/base/Interfaces/Bartok/ArgIterator.csi

22 lines
466 B
Plaintext

// ==++==
//
// 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();
}
}