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/AssemblyCultureAttribute.cs')
-rw-r--r--mcs/class/corlib/System.Reflection/AssemblyCultureAttribute.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/mcs/class/corlib/System.Reflection/AssemblyCultureAttribute.cs b/mcs/class/corlib/System.Reflection/AssemblyCultureAttribute.cs
deleted file mode 100644
index 16ce1f96cc4..00000000000
--- a/mcs/class/corlib/System.Reflection/AssemblyCultureAttribute.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-//
-// System.Reflection.AssemblyCultureAttribute.cs
-//
-// Duncan Mak <duncan@ximian.com>
-//
-// (C) 2002 Ximian, Inc. http://www.ximian.com
-//
-
-using System;
-
-namespace System.Reflection
-{
- [AttributeUsage (AttributeTargets.Assembly)]
- public sealed class AssemblyCultureAttribute : Attribute
- {
- // Field
- private string name;
-
- // Constructor
- public AssemblyCultureAttribute (string culture)
- {
- name = culture;
- }
-
- // Properties
- public string Culture
- {
- get { return name; }
- }
- }
-}