IsRuntimeType(obj.GetType());
IsRuntimeType(obj.GetType().GetType());
IsWhatSystemType(obj.GetType());
IsWhatSystemType(obj.GetType().GetType());
void IsRuntimeType(object obj)
if (obj == typeof(Type).GetType())
Console.WriteLine("object is a System.RuntimeType");
Console.WriteLine("object is a System.Type");
void IsWhatSystemType(object obj)
Console.WriteLine("object is a System.RuntimeType");
Console.WriteLine("object is a Type");