using System;
namespace ConsoleApplication_C_Sharp
{
static class Program
{
static void Main(string[] args)
{
string s = "c# 987";
foreach (char ch in s)
{
bool b = char.IsDigit(ch);
Console.Write(ch);
Console.Write(' ');
Console.WriteLine(b);
}
}
}
}
/*
run:
c False
# False
False
9 True
8 True
7 True
*/