2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git] / class / corlib / System.Runtime.InteropServices / DefaultCharSetAttribute.cs
blobc2baa7ea72eaa23cfada6e8aa32d1bbede3f75a6
1 //
2 // System.Runtime.InteropServices.DefaultCharSetAttribute
3 //
4 // Author:
5 // Kazuki Oikawa (kazuki@panicode.com)
6 //
8 using System;
9 using System.Runtime.Serialization;
11 namespace System.Runtime.InteropServices
13 [AttributeUsage (AttributeTargets.Module, Inherited = false)]
14 [ComVisible (true)]
15 public sealed class DefaultCharSetAttribute : Attribute
17 CharSet _set;
19 public DefaultCharSetAttribute (CharSet charSet)
21 _set = charSet;
24 public CharSet CharSet { get { return _set; } }