摘要: ``` class Program { static void Main(string[] args) { Type t = typeof(Student);//typeof(类) 取类的类型 并且存储在Type类型的t变量(其实是把类的类型的引用存在t中) //t stu1 = new t();这样是... 阅读全文
posted @ 2019-09-27 09:04 卯毛 阅读(189) 评论(0) 推荐(0) 编辑