Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

Typeof() กับ GetType() ใน C #


ประเภทของ()

ประเภทใช้ Type และส่งกลับประเภทของอาร์กิวเมนต์

ตัวอย่างเช่น System.Byte สำหรับสิ่งต่อไปนี้ −

typeof(byte)

ต่อไปนี้เป็นตัวอย่าง −

ตัวอย่าง

using System;
class Program {
   static void Main() {
      Console.WriteLine(typeof(int));
      Console.WriteLine(typeof(byte));
   }
}

ผลลัพธ์

System.Int32
System.Byte

GetType()

เมธอด GetType() ของคลาสอาร์เรย์ใน C# รับประเภทของอินสแตนซ์ปัจจุบัน

เพื่อให้ได้แบบ

Type tp = value.GetType();

ในตัวอย่างด้านล่าง เรากำลังตรวจสอบค่า int โดยใช้ประเภท

if (tp.Equals(typeof(int)))
Console.WriteLine("{0} is an integer data type.", value)

ต่อไปนี้เป็นการใช้งาน GetType() วิธีการใน C#.

ตัวอย่าง

using System;

class Program {
   public static void Main() {
      object[] values = { (int) 100, (long) 17111};
      foreach (var value in values) {

         Type tp = value.GetType();

         if (tp.Equals(typeof(int)))
         Console.WriteLine("{0} is an integer data type.", value);

         else
         Console.WriteLine("'{0}' is not an int data type.", value);
      }
   }
}

ผลลัพธ์

100 is an integer data type.
'17111' is not an int data type.