System C# by API

using System;  
  
class MainClass {     
  public static void Main() {     
    string str = "This is a test. $23"; 
    int i; 
 
    for(i=0; i < str.Length; i++) { 
      Console.Write(str[i] + " is"); 
      if(Char.IsSymbol(str[i])) 
        Console.Write(" symbol"); 
 
      Console.WriteLine(); 
    } 
 
  }     
}