通过System.Type,我们可以获取某个类的全名、命名空间、属性等信息。
实验代码:
static void Main(string[] args) { //System.Type string s = "hello refelction"; Type t = s.GetType(); //方法一 Console.WriteLine(t.FullName); Type t2 = Type.GetType("system.String", false, true);//方法一 Console.WriteLine(t2.FullName); Type t3 = typeof(string);//方法一 Console.WriteLine(t3.FullName); Console.ReadKey(); }
效果图:
时间: 2024-12-13 01:06:27