In Test/System.Windows.Forms:
[mono-project.git] / mcs / class / corlib / System.Runtime.InteropServices / DefaultCharSetAttribute.cs
blob6007391cf8db41abc8ec766f5d4a9829ebf4ed2f
1 //
2 // System.Runtime.InteropServices.DefaultCharSetAttribute
3 //
4 // Author:
5 // Kazuki Oikawa (kazuki@panicode.com)
6 //
8 #if NET_2_0
10 using System;
11 using System.Runtime.Serialization;
13 namespace System.Runtime.InteropServices
15 [AttributeUsage (AttributeTargets.Module, Inherited = false)]
16 public class DefaultCharSetAttribute : Attribute
18 CharSet _set;
20 public DefaultCharSetAttribute (CharSet charSet)
22 _set = charSet;
25 public CharSet CharSet { get { return _set; } }
28 #endif