http://stackoverflow.com/questions/4537945/what-is-the-difference-of-getting-type-by-using-gettype-and-typeof You can only use typeof() when you know that type at compile time, and you're trying to obtain the corresponding Type object. (Although the…
typeof: The typeof operator is used to obtain the System.Type object for a type. 运算符,获得某一类型的 System.Type 对象. Type t = typeof(int); GetType: Gets the Type of the current instance. 方法,获取当前实例的类型. int i = 10;Console.WriteLine(i.G…
1.typeof(x)中的x,必须是具体的类名.类型名称等,不可以是变量名称. 2.GetType()方法继承自Object,所以C#中任何对象都具有GetType()方法,它的作用和typeof()相同,返回Type类型的当前对象的类型. 比如有这样一个变量i: Int32 i = new Int32(); i.GetType()返回值是Int32的类型,但是无法使用typeof(i),因为i是一个变量,如果要使用typeof(),则只能:typeof(Int32),返回的同样是Int32的类…
官方解释: 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…