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

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


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

ไวยากรณ์

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

public static bool IsLetter (char ch);

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

ตัวอย่าง

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

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

ผลลัพธ์

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

Value = K
Is the value a letter? = True

ตัวอย่าง

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

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

ผลลัพธ์

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

Value = 2
Is the value a letter? = False