System.Xml.XmlConvert.IsStartNCNameSurrogatePair C# (CSharp) Method

IsStartNCNameSurrogatePair() public static method

public static IsStartNCNameSurrogatePair ( char lowChar, char highChar ) : bool
lowChar char
highChar char
return bool
        public static bool IsStartNCNameSurrogatePair(char lowChar, char highChar)
        {
            return xmlCharType.IsNCNameSurrogateChar(lowChar, highChar);
        }
#endif