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

Char.IsNumber() วิธีการใน C #


วิธี Char.IsNumber() ใน C# ใช้เพื่อระบุว่าอักขระ Unicode ที่ระบุถูกจัดประเภทเป็นตัวเลขหรือไม่

ไวยากรณ์

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

public static bool IsNumber (char ch);

ด้านบน พารามิเตอร์ ch คืออักขระ Unicode ที่จะประเมิน

ตัวอย่าง

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

using System;
public class Demo {
   public static void Main(){
      bool res;
      char val = '2';
      Console.WriteLine("Value = "+val);
      res = Char.IsNumber(val);
      Console.WriteLine("Is the value a number? = "+res);
   }
}

ผลลัพธ์

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

Value = 2
Is the value a number? = True

ตัวอย่าง

เรามาดูตัวอย่างอื่นกัน −

using System;
public class Demo {
   public static void Main(){
      bool res;
      char val = 'P';
      Console.WriteLine("Value = "+val);
      res = Char.IsNumber(val);
      Console.WriteLine("Is the value a number? = "+res);
   }
}

ผลลัพธ์

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

Value = P
Is the value a number? = False