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

LCIDConversionAttribute.cs « System.Runtime.InteropServices « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af04cccc1e4f50426a928ec4f09b24f2569d6359 (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
//
// System.Runtime.InteropServices.LCIDConversionAttribute.cs
//
// Name: Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

using System;

namespace System.Runtime.InteropServices {

	[AttributeUsage (AttributeTargets.Method)]
	public sealed class LCIDConversionAttribute : Attribute
	{
		int id;
		
		public LCIDConversionAttribute (int lcid)
		{
			id = lcid;
		}

		public int Value {
			get { return id; }
		}
	}
}