เมธอด UInt16.GetTypeCode() ใน C# ใช้เพื่อส่งคืน TypeCode สำหรับประเภทค่า UInt16
ไวยากรณ์
ต่อไปนี้เป็นไวยากรณ์ -
public TypeCode GetTypeCode ();
ตัวอย่าง
ให้เราดูตัวอย่างการใช้เมธอด Uint16.GetTypeCode() -
using System; public class Demo { public static void Main(){ ushort val1 = 55; ushort val2 = 100; TypeCode type1 = val1.GetTypeCode(); TypeCode type2 = val2.GetTypeCode(); Console.WriteLine("Typecode for val1 = "+type1); Console.WriteLine("Typecode for val1 = "+type2); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Typecode for val1 = UInt16 Typecode for val1 = UInt16
ตัวอย่าง
ให้เราดูตัวอย่างอื่นเพื่อใช้เมธอด UInt16.GetTypeCode() -
using System; public class Demo { public static void Main(){ ushort val1 = UInt16.MinValue; ushort val2 = 0; TypeCode type1 = val1.GetTypeCode(); TypeCode type2 = val2.GetTypeCode(); Console.WriteLine("Typecode for val1 = "+type1); Console.WriteLine("Typecode for val2 = "+type2); } }
ผลลัพธ์
สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -
Typecode for val1 = UInt16 Typecode for val2 = UInt16