AspNetEdit.Editor.Persistence.AspTokenizer.is_identifier_start_character C# (CSharp) Method

is_identifier_start_character() private method

private is_identifier_start_character ( char c ) : bool
c char
return bool
        bool is_identifier_start_character(char c)
        {
            return (Char.IsLetter (c) || c == '_' );
        }