Add Environment::CurrentManagedThreadId
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / DefaultCharSetAttribute.cs
index 6007391cf8db41abc8ec766f5d4a9829ebf4ed2f..c2baa7ea72eaa23cfada6e8aa32d1bbede3f75a6 100644 (file)
@@ -5,15 +5,14 @@
 //   Kazuki Oikawa  (kazuki@panicode.com)
 //
 
-#if NET_2_0
-
 using System;
 using System.Runtime.Serialization;
 
 namespace System.Runtime.InteropServices
 {
        [AttributeUsage (AttributeTargets.Module, Inherited = false)]
-       public class DefaultCharSetAttribute : Attribute
+       [ComVisible (true)]
+       public sealed class DefaultCharSetAttribute : Attribute
        {
                CharSet _set;
 
@@ -25,4 +24,3 @@ namespace System.Runtime.InteropServices
                public CharSet CharSet { get { return _set; } }
        }
 }
-#endif
\ No newline at end of file