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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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获取一个类的命名空间.类名的主要内容,如果未能解决你的问题,请参考以下文章

C#获取资源文件

c#如何获取某一命名空间下的所有的类的信息(方法以及参数)

C# 利用反射根据类名创建类的实例对象

C#中如何获得指定命名空间中所有自定义类的信息

c#里一个文件夹下可以添加多个命名空间和类名相同的类么

C#控制台 assembly与fullname获取一个dll中所有的命名空间