Scorpio.Compiler.ScriptLexer.IsHexDigit C# (CSharp) Method

IsHexDigit() private method

private IsHexDigit ( char c ) : bool
c char
return 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;
		}
    }