码迷,mamicode.com
首页 > Windows程序 > 详细

C#控制台 typeof获取一个类的命名空间.类名

时间:2016-10-21 00:33:28      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:

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获取一个类的命名空间.类名

标签:

原文地址:http://www.cnblogs.com/jinlingzi/p/5982825.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!