11 references to GetUnicodeCategory
mscorlib (11)
system\char.cs (10)
212return (CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.DecimalDigitNumber); 245return (CheckLetter(CharUnicodeInfo.GetUnicodeCategory(c))); 294return (CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.UppercaseLetter); 310return (CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.LowercaseLetter); 339return (CheckPunctuation(CharUnicodeInfo.GetUnicodeCategory(c))); 364return (CheckLetterOrDigit(CharUnicodeInfo.GetUnicodeCategory(c))); 513return (CharUnicodeInfo.GetUnicodeCategory(c) == UnicodeCategory.Control); 621return (CheckNumber(CharUnicodeInfo.GetUnicodeCategory(c))); 692return (CheckSeparator(CharUnicodeInfo.GetUnicodeCategory(c))); 749return (CheckSymbol(CharUnicodeInfo.GetUnicodeCategory(c)));
system\globalization\charunicodeinfo.cs (1)
235UnicodeCategory uc = GetUnicodeCategory(c);