WebMarkupMin.Core.Parsers.XmlParser.IsTagFirstChar C# (CSharp) Method

IsTagFirstChar() private static method

Checks whether the character is valid first character of XML tag name
private static IsTagFirstChar ( char value ) : bool
value char Character value
return bool
        private static bool IsTagFirstChar(char value)
        {
            return char.IsLetter(value) || value == '_';
        }