singrdk/base/Interfaces/Baseattrs/ParamArrayAttribute.csi

24 lines
862 B
Plaintext
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
2008-11-17 18:29:00 -05:00
//=============================================================================
//
// Class: ParamArrayAttribute
//
// Purpose: Container for assemblies.
//
//=============================================================================
2008-03-05 09:52:00 -05:00
namespace System
{
//This class contains only static members and does not need to be serializable
//| <include file='doc\ParamArrayAttribute.uex' path='docs/doc[@for="ParamArrayAttribute"]/*' />
[AttributeUsage(AttributeTargets.Parameter, Inherited=true, AllowMultiple=false)]
public sealed class ParamArrayAttribute : Attribute
{
//| <include file='doc\ParamArrayAttribute.uex' path='docs/doc[@for="ParamArrayAttribute.ParamArrayAttribute"]/*' />
public ParamArrayAttribute ();
}
}