摘要: 一:使用Object基类的GetType()方法 Car car = new Car(); Type carType = car.GetType(); 二:使用typeof操作符 Type carType=typeof(Car); 三:使用System.Type.GetType()方法 该方法是Sy 阅读全文
posted @ 2017-01-15 22:18 海棠厅畔 阅读(5464) 评论(0) 推荐(0) 编辑