singrdk/base/Kernel/System/ParamArrayAttribute.cs

26 lines
744 B
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
// ==++==
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// ==--==
/*=============================================================================
**
** Class: ParamArrayAttribute
**
**
** Purpose: Container for assemblies.
**
** Date: Mar 01, 2000
**
=============================================================================*/
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 () {}
}
}