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

IsPublicIdChar() public static method

public static IsPublicIdChar ( char ch ) : bool
ch char
return bool
        public static bool IsPublicIdChar(char ch)
        {
            return s_xmlCharType.IsPubidChar(ch);
        }