// // System.ParamArrayAttribute.cs // // Author: // Miguel de Icaza (miguel@ximian.com) // // (C) Ximian, Inc. http://www.ximian.com // namespace System { /// /// Used to flag that the method will take a variable number /// of arguments /// [AttributeUsage(AttributeTargets.Parameter)] public sealed class ParamArrayAttribute : Attribute { public ParamArrayAttribute () { } } }