2002-01-23 Duncan Mak <duncan@ximian.com>
[mono.git] / mcs / class / corlib / System.Reflection / AssemblyCultureAttribute.cs
diff --git a/mcs/class/corlib/System.Reflection/AssemblyCultureAttribute.cs b/mcs/class/corlib/System.Reflection/AssemblyCultureAttribute.cs
new file mode 100644 (file)
index 0000000..16ce1f9
--- /dev/null
@@ -0,0 +1,31 @@
+//
+// 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; }
+               }
+       }
+}