* Makefile.am: Build `docs` after `runtime`, so that it can depend
[mono.git] / mcs / class / corlib / System.Runtime.InteropServices / DefaultCharSetAttribute.cs
index b1a227a73b8ca3dc85997dd39160140dc1387b65..6cbec16eb07d263002b59360d58c58de0c50df1d 100644 (file)
@@ -1,29 +1,29 @@
-//\r
-// System.Runtime.InteropServices.DefaultCharSetAttribute\r
-//\r
-// Author:\r
-//   Kazuki Oikawa  (kazuki@panicode.com)\r
-//\r
-\r
-#if NET_2_0\r
-\r
-using System;\r
-using System.Runtime.ConstrainedExecution;\r
-using System.Runtime.Serialization;\r
-\r
-namespace System.Runtime.InteropServices\r
-{\r
-       [AttributeUsage (AttributeTargets.Module, Inherited = false)]\r
-       public class DefaultCharSetAttribute : Attribute\r
-       {\r
-               CharSet _set;\r
-\r
-               public DefaultCharSetAttribute (CharSet charSet)\r
-               {\r
-                       _set = charSet;\r
-               }\r
-\r
-               public CharSet CharSet { get { return _set; } }\r
-       }\r
-}\r
-#endif
\ No newline at end of file
+//
+// System.Runtime.InteropServices.DefaultCharSetAttribute
+//
+// Author:
+//   Kazuki Oikawa  (kazuki@panicode.com)
+//
+
+#if NET_2_0
+
+using System;
+using System.Runtime.Serialization;
+
+namespace System.Runtime.InteropServices
+{
+       [AttributeUsage (AttributeTargets.Module, Inherited = false)]
+       [ComVisible (true)]
+       public sealed class DefaultCharSetAttribute : Attribute
+       {
+               CharSet _set;
+
+               public DefaultCharSetAttribute (CharSet charSet)
+               {
+                       _set = charSet;
+               }
+
+               public CharSet CharSet { get { return _set; } }
+       }
+}
+#endif