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