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

is_identifier_part_character() private method

private is_identifier_part_character ( char c ) : bool
c char
return bool
        bool is_identifier_part_character(char c)
        {
            return (Char.IsLetterOrDigit (c) || c == '_' || c == '-');
        }