singrdk/base/Interfaces/Bartok/VarargList.csi

20 lines
368 B
Plaintext
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
using System.Runtime.CompilerServices;
namespace System
{
[RequiredByBartok]
public struct VarargList
{
#if !DONT_DO_BARTOK
private int count;
#endif
[RequiredByBartok]
private static VarargList Create(int count);
}
}