Newer
Older
DNA / corlib / System / FlagsAttribute.cs
@Chris Bacon Chris Bacon on 21 Jan 2012 158 bytes First commit
#if !LOCALTEST

namespace System {

	[AttributeUsage(AttributeTargets.Enum, Inherited=false)]
	public sealed class FlagsAttribute : Attribute {
	}

}

#endif