demonstrates IsSymbol.

image_pdfimage_print
   
  

using System;

public class IsSymbolSample {
    public static void Main() {
        string str = "non-symbolic characters"; 

        Console.WriteLine(Char.IsSymbol('+'));      
        Console.WriteLine(Char.IsSymbol(str, 8));   
    }
}

   
    
     


This entry was posted in Data Types. Bookmark the permalink.