summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/TypeCode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/TypeCode.cs')
-rw-r--r--src/mscorlib/src/System/TypeCode.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mscorlib/src/System/TypeCode.cs b/src/mscorlib/src/System/TypeCode.cs
index bf71c2fd5b..293eb1f1aa 100644
--- a/src/mscorlib/src/System/TypeCode.cs
+++ b/src/mscorlib/src/System/TypeCode.cs
@@ -20,10 +20,12 @@
// These types of values are instead represented as classes. When the type code
// of an object is TypeCode.Object, a further instance-of check can be used to
// determine if the object is one of these values.
-namespace System {
+
+namespace System
+{
[Serializable]
- [System.Runtime.InteropServices.ComVisible(true)]
- public enum TypeCode {
+ public enum TypeCode
+ {
Empty = 0, // Null reference
Object = 1, // Instance that isn't a value
DBNull = 2, // Database null value
@@ -44,5 +46,3 @@ namespace System {
String = 18, // Unicode character string
}
}
-
-