Welcome to mirror list, hosted at ThFree Co, Russian Federation.

FlagsAttribute.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8c2b40defa086fac15f9c3704c59f325864e13ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
// System.FlagsAttribute.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

namespace System {

	/// <summary>
	///   The FlagsAttribute tags enumerations as bitfields.
	/// </summary>
	///
	/// <remarks>
	///   The FlagsAttribute can be used to tag an enumeration to be 
	///   a bit field.  This will allow the compiler and visual tools
	///   to treat the bits in an enumeration as a set of flags.
	/// </remarks>

	[AttributeUsage (AttributeTargets.Enum)]
	[Serializable]
	public class FlagsAttribute : Attribute {

		// No methods.
		
	}
}