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.Resources/NeutralResoucesLanguageAttribute.cs')
-rw-r--r--mcs/class/corlib/System.Resources/NeutralResoucesLanguageAttribute.cs28
1 files changed, 0 insertions, 28 deletions
diff --git a/mcs/class/corlib/System.Resources/NeutralResoucesLanguageAttribute.cs b/mcs/class/corlib/System.Resources/NeutralResoucesLanguageAttribute.cs
deleted file mode 100644
index abff4ca7116..00000000000
--- a/mcs/class/corlib/System.Resources/NeutralResoucesLanguageAttribute.cs
+++ /dev/null
@@ -1,28 +0,0 @@
-//
-// System.Resources.NeutralResourcesLanguageAttribute.cs
-//
-// Author:
-// Duncan Mak (duncan@ximian.com)
-//
-// (C) 2001 Ximian, Inc. http://www.ximian.com
-//
-
-namespace System.Resources
-{
- [AttributeUsage (AttributeTargets.Assembly)]
- public sealed class NeutralResourcesLanguageAttribute : Attribute
- {
-
- string culture;
-
- // Constructors
- public NeutralResourcesLanguageAttribute (string cultureName)
- {
- culture = cultureName;
- }
- public string CultureName
- {
- get { return culture; }
- }
- }
-}