bigloo.foreign.isdigit C# (CSharp) Method

isdigit() static private method

static private isdigit ( byte cn ) : bool
cn byte
return bool
        static bool isdigit( byte  cn )
        {
            return(((byte)'0' <= cn) && (cn <= (byte)'9'));
        }
foreign