Is Char Oct Digit - CSharp System

CSharp examples for System:Char

Description

Is Char Oct Digit

Demo Code


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';
        }
}

Related Tutorials