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

Byte.GetTypeCode() วิธีการใน C #


Byte.GetTypeCode() วิธีการใน C# ส่งกลับ TypeCode สำหรับประเภทค่า Byte

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

public TypeCode GetTypeCode ();

ตัวอย่าง

ให้เราดูตัวอย่างการใช้วิธีการ Byte.GetTypeCode() -

using System;
public class Demo {
   public static void Main(){
      byte val1;
      val1 = 50;
      TypeCode type = val1.GetTypeCode();
      Console.WriteLine("TypeCode = "+type);
   }
}

ผลลัพธ์

สิ่งนี้จะสร้างผลลัพธ์ต่อไปนี้ -

TypeCode = Byte