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/AssemblyProductAttribute.cs')
-rw-r--r--mcs/class/corlib/System.Reflection/AssemblyProductAttribute.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mcs/class/corlib/System.Reflection/AssemblyProductAttribute.cs b/mcs/class/corlib/System.Reflection/AssemblyProductAttribute.cs
deleted file mode 100644
index 67c85f9421b..00000000000
--- a/mcs/class/corlib/System.Reflection/AssemblyProductAttribute.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-//
-// System.Reflection.AssemblyProductAttribute.cs
-//
-// Author: Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.Reflection
-{
- [AttributeUsage (AttributeTargets.Assembly)]
- public sealed class AssemblyProductAttribute : Attribute
- {
- // Field
- private string name;
-
- // Constructor
- public AssemblyProductAttribute (string product)
- {
- name = product;
- }
-
- // Property
- public string Product
- {
- get { return name; }
- }
- }
-}