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

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


วิธี Char.IsSymbol() ใน C# ระบุว่าอักขระที่ตำแหน่งที่ระบุในสตริงที่ระบุถูกจัดประเภทเป็นอักขระสัญลักษณ์หรือไม่

ไวยากรณ์

public static bool IsSymbol (string str, int index);

ด้านบน str เป็นสตริง ในขณะที่ตำแหน่งของอักขระที่จะประเมินใน str

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

ตัวอย่าง

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

ผลลัพธ์

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

Value = P
Is the value a symbol? = False

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

ตัวอย่าง

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

ผลลัพธ์

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

Value = +
Is the value a symbol? = True