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/System/System.ComponentModel/BrowsableAttribute.cs')
-rwxr-xr-xmcs/class/System/System.ComponentModel/BrowsableAttribute.cs38
1 files changed, 0 insertions, 38 deletions
diff --git a/mcs/class/System/System.ComponentModel/BrowsableAttribute.cs b/mcs/class/System/System.ComponentModel/BrowsableAttribute.cs
deleted file mode 100755
index e56beb2f809..00000000000
--- a/mcs/class/System/System.ComponentModel/BrowsableAttribute.cs
+++ /dev/null
@@ -1,38 +0,0 @@
-//
-// System.ComponentModel.BrowsableAttribute.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-//
-
-namespace System.ComponentModel {
-
- [AttributeUsage (AttributeTargets.Property | AttributeTargets.Event)]
- public sealed class BrowsableAttribute : Attribute {
- bool browsable;
-
- public static readonly BrowsableAttribute No;
- public static readonly BrowsableAttribute Yes;
-
- static BrowsableAttribute ()
- {
- No = new BrowsableAttribute (false);
- Yes = new BrowsableAttribute (false);
- }
-
- public BrowsableAttribute (bool browsable)
- {
- this.browsable = browsable;
- }
-
- public bool Browsable {
- get {
- return browsable;
- }
- }
-
- }
-}