c#中typeof和GetType区别

Type type = typeof(MyClass); // 编译时已知 MyClass 类型,可以直接使用typeof

object obj = new MyClass();

Type objType = obj.GetType(); // 运行时才知道 obj 的类型,只能使用动态获取的方式

posted @ 2023-06-28 08:52  Gdavid  阅读(21)  评论(0编辑  收藏  举报