CSharp examples for System:Char
Is Char Oct Digit
using System.Linq; using System.Collections.Generic; public class Main{ public static bool IsOctDigit(this char c) {//from w w w . ja va 2s .c om return '0' <= c && c <= '7'; } }