singrdk/base/Applications/Runtime/Full/System/ParamArrayAttribute.cs

23 lines
715 B
C#
Raw 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
{
//| <include path='docs/doc[@for="ParamArrayAttribute"]/*' />
[AttributeUsage (AttributeTargets.Parameter, Inherited=true, AllowMultiple=false)]
public sealed class ParamArrayAttribute : Attribute
{
//| <include path='docs/doc[@for="ParamArrayAttribute.ParamArrayAttribute"]/*' />
public ParamArrayAttribute () {}
}
}