Type type = typeof(MyClass); // 编译时已知 MyClass 类型,可以直接使用typeof
object obj = new MyClass();
Type objType = obj.GetType(); // 运行时才知道 obj 的类型,只能使用动态获取的方式