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

NonSerializedAttribute.cs « System « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ac82dfe67a2603300094af02b91eb49a07589f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

//
// System/NonSerializedAttribute.cs
//
// Author:
//   Paolo Molaro (lupus@ximian.com)
//
// (C) 2001 Ximian, Inc.  http://www.ximian.com
//

namespace System {

	[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
	public sealed class NonSerializedAttribute : Attribute {
		public NonSerializedAttribute() {
		}
	}
}