C#反射機制 Type型別的獲取方式
阿新 • • 發佈:2018-12-21
有三種方式獲取Type型別
程式碼如下:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Reflection { class Program { static void Main(string[] args) { string s = "Hello Reflection"; 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.ReadLine(); } } }
執行效果如下: