Scorpio.Compiler.ScriptLexer.IsHexDigit C# (CSharp) 메소드

IsHexDigit() 개인적인 메소드

private IsHexDigit ( char c ) : bool
c char
리턴 bool
        bool IsHexDigit( char c )
		{
			if( Char.IsDigit( c ) )
				return true;
			if( 'a' <= c && c <= 'f' )
				return true;
			if( 'A' <= c && c <= 'F' )
				return true;
			return false;
		}
    }