| 12345678910111213141516171819202122232425262728293031 |
- //
- // System.Reflection.AssemblyFlagsAttribute.cs
- //
- // Author: Duncan Mak ([email protected])
- //
- // (C) Ximian, Inc. http://www.ximian.com
- //
- namespace System.Reflection
- {
- [AttributeUsage (AttributeTargets.Assembly)]
- public sealed class AssemblyFlagsAttribute : Attribute
- {
- // Field
- private uint flags;
-
- // Constructor
- [CLSCompliant (false)]
- public AssemblyFlagsAttribute (uint flags)
- {
- this.flags = flags;
- }
- // Property
- [CLSCompliant (false)]
- public uint Flags
- {
- get { return flags; }
- }
- }
- }
|