CSharp examples for System:Char
Is Char Digit
using System.Globalization; using System;/*from w ww .java 2 s. c om*/ public class Main{ public static bool IsDigit(char c) { return ((c >= '0') && (c <= '9')); } }