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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/System/NonSerializedAttribute.cs')
-rwxr-xr-xmcs/class/corlib/System/NonSerializedAttribute.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/mcs/class/corlib/System/NonSerializedAttribute.cs b/mcs/class/corlib/System/NonSerializedAttribute.cs
deleted file mode 100755
index 7ac82dfe67a..00000000000
--- a/mcs/class/corlib/System/NonSerializedAttribute.cs
+++ /dev/null
@@ -1,18 +0,0 @@
-
-//
-// 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() {
- }
- }
-}