Welcome to mirror list, hosted at ThFree Co, Russian Federation.

NeutralResoucesLanguageAttribute.cs « System.Resources « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: abff4ca7116461218f50e3af841e161d5598173d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// 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; }
		}
	}
}