HtmlLexicalAnalyzer.IsCombiningCharacter C# (CSharp) Method

IsCombiningCharacter() private method

identifies a character as being a combining character, permitted in a name TODO: only a placeholder for now but later to be replaced with comparisons against the list of combining characters in the XML documentation
private IsCombiningCharacter ( char character ) : bool
character char /// character to be checked ///
return bool
    private bool IsCombiningCharacter(char character)
    {
        // TODO: put actual code with checks against all combining characters here
        return false;
    }