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

ContextStaticAttribute.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 054c9845e6f317bb6ec41414fd9e4a64a1f55f68 (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
//
// System.ContextStaticAttribute.cs
//
// Author:
//   Miguel de Icaza (miguel@ximian.com)
//
// (C) Ximian, Inc.  http://www.ximian.com
//

namespace System {

	/// <summary>
	///   The ContextStatic attribute is used to flag fields as being unique
	/// </summary>
	///
	/// <remarks>
	///   
	/// </remarks>
	[AttributeUsage (AttributeTargets.Field)]
	[Serializable]
	public class ContextStaticAttribute : Attribute {

		   public ContextStaticAttribute () : base ()
		   {
		   }
		
	}
}