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

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


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

ไวยากรณ์

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

public static bool IsLower (char ch);

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

ตัวอย่าง

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

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

ผลลัพธ์

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

Value = K
Is the value a lowercase letter? = False

ตัวอย่าง

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

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

ผลลัพธ์

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

Value = d
Is the value a lowercase letter? = True