6 public static int Main (string[] args
) {
8 if (args
.Length
> 0 && args
[0] == "-v")
12 Console
.WriteLine ("ValueType is valuetype: "+ typeof(System
.ValueType
).IsValueType
.ToString());
13 if (typeof(System
.ValueType
).IsValueType
)
16 Console
.WriteLine ("Enum is valuetype: "+ typeof(System
.Enum
).IsValueType
.ToString());
17 if (typeof(System
.Enum
).IsValueType
)
20 Console
.WriteLine ("TypeAttributes is valuetype: "+ typeof(System
.Reflection
.TypeAttributes
).IsValueType
.ToString());
21 if (!typeof(System
.Reflection
.TypeAttributes
).IsValueType
)
24 Console
.WriteLine ("TypeAttributes is enum: "+ typeof(System
.Reflection
.TypeAttributes
).IsEnum
.ToString());
25 if (!typeof(System
.Reflection
.TypeAttributes
).IsEnum
)
28 Console
.WriteLine ("Enum is enum: "+ typeof(System
.Enum
).IsEnum
.ToString());
29 if (typeof(System
.Enum
).IsEnum
)
32 Console
.WriteLine ("Int32 is valuetype: "+ typeof(System
.Int32
).IsValueType
.ToString());
33 if (!typeof(System
.Int32
).IsValueType
)