首页 > 代码库 > C#控制台 typeof获取一个类的命名空间.类名
C#控制台 typeof获取一个类的命名空间.类名
1 code
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace ConsoleApplication10 8 { 9 class Program 10 { 11 static void Main(string[] args) 12 { 13 Type tp = typeof(Test); 14 Console.WriteLine(tp); 15 Console.ReadKey(); 16 } 17 } 18 class Test:Object 19 { 20 private int _age; 21 private string _name; 22 23 public int Age 24 { 25 get 26 { 27 return _age; 28 } 29 30 set 31 { 32 _age = value; 33 } 34 } 35 36 public string Name 37 { 38 get 39 { 40 return _name; 41 } 42 43 set 44 { 45 _name = value; 46 } 47 } 48 //一个函数 49 public void AMethod() 50 { 51 52 } 53 } 54 }
2 show
C#控制台 typeof获取一个类的命名空间.类名
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。