官方解释: Used to obtain the "System.Type" object for a type. A 'typeof' expression takes the following for: System.Type type = typeof(x); 可以理解为: 可用 'typeof' 来获取对象 'x' 的类型, 得到的 Type 类型对象 t 有一系列方法可以调用, x 必须是类名 . Object.GetType: Get the Type of the c…
typeof 参数是一个类型名称,比如你自己编写的一个类 GetType()是类的方法,继承自object,返回该实例的类型 is 用来检测实例的兼容性(是否可以相互转换) 例: class Animal { } class Dog : Animal { } void PrintTypes(Animal a) { Console.WriteLine(a.GetType() == typeof(Animal)); // false Console.WriteLine(a is Animal); /…