หากต้องการรับประเภทที่อ้างอิงโดยหมายเลขอ้างอิงประเภทที่ระบุ รหัสจะเป็นดังนี้ -
ตัวอย่าง
using System; public class Demo { public static void Main() { Type type1 = typeof(short); RuntimeTypeHandle typeHandle = Type.GetTypeHandle(type1); Type type = Type.GetTypeFromHandle(typeHandle); Console.WriteLine("Attributes = " + type.Attributes); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Attributes = AutoLayout, AnsiClass, Class, Serializable, BeforeFieldInit
ตัวอย่าง
เรามาดูตัวอย่างกัน −
using System; public class Demo { public static void Main() { Type type1 = typeof(System.Type); RuntimeTypeHandle typeHandle = Type.GetTypeHandle(type1); Type type = Type.GetTypeFromHandle(typeHandle); Console.WriteLine("Attributes = " + type.Attributes); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Attributes = AutoLayout, AnsiClass, Class, Serializable, BeforeFieldInit