* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / DefaultCharSetAttribute.cs
1 //
2 // System.Runtime.InteropServices.DefaultCharSetAttribute
3 //
4 // Author:
5 //   Kazuki Oikawa  (kazuki@panicode.com)
6 //
7
8 #if NET_2_0
9
10 using System;
11 using System.Runtime.Serialization;
12
13 namespace System.Runtime.InteropServices
14 {
15         [AttributeUsage (AttributeTargets.Module, Inherited = false)]
16         public class DefaultCharSetAttribute : Attribute
17         {
18                 CharSet _set;
19
20                 public DefaultCharSetAttribute (CharSet charSet)
21                 {
22                         _set = charSet;
23                 }
24
25                 public CharSet CharSet { get { return _set; } }
26         }
27 }
28 #endif