Merge pull request #2573 from BrzVlad/fix-conc-memusage
[mono.git] / mcs / class / corlib / System / TypeCode.cs
index fb6401d8a26bee69ebcb1f2d24a0921514a7a2a1..2fea3e3839202fd6664e8255c8e22ca8662543e9 100644 (file)
@@ -12,7 +12,7 @@
 //
 
 //
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-namespace System
-{
-       public enum TypeCode
-       {
+using System.Runtime.InteropServices;
+
+namespace System {
+
+       [ComVisible (true)]
+       [Serializable]
+       public enum TypeCode {
+
                Empty = 0,
                Object = 1,
                DBNull = 2,