Microsoft.Language.Xml.Scanner.IsNewLine C# (CSharp) Method

IsNewLine() static private method

static private IsNewLine ( char c ) : bool
c char
return bool
        internal static bool IsNewLine(char c)
        {
            return UCH_CR == c || UCH_LF == c || (c >= UCH_NEL && (UCH_NEL == c || UCH_LS == c || UCH_PS == c));
        }
Scanner