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.Reflection/DefaultMemberAttribute.cs')
-rw-r--r--mcs/class/corlib/System.Reflection/DefaultMemberAttribute.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/class/corlib/System.Reflection/DefaultMemberAttribute.cs b/mcs/class/corlib/System.Reflection/DefaultMemberAttribute.cs
deleted file mode 100644
index 855cff8ed7d..00000000000
--- a/mcs/class/corlib/System.Reflection/DefaultMemberAttribute.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// System.Reflection.DefaultMemberAttribute.cs
-//
-// Author:
-// Miguel de Icaza (miguel@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.Reflection {
-
- [Serializable]
- [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct |
- AttributeTargets.Interface)]
- public sealed class DefaultMemberAttribute : Attribute {
- string member_name;
-
- public DefaultMemberAttribute (string member_name)
- {
- this.member_name = member_name;
- }
-
- public string MemberName {
- get {
- return member_name;
- }
- }
- }
-}