HtmlLexicalAnalyzer.IsGoodForNameStart C# (CSharp) 메소드

IsGoodForNameStart() 개인적인 메소드

checks if a character can be used to start a name if this check is true then the rest of the name can be read
private IsGoodForNameStart ( char character ) : bool
character char /// character value to be checked ///
리턴 bool
    private bool IsGoodForNameStart(char character)
    {
        return character == '_' || Char.IsLetter(character);
    }