12 references to GetUnicodeCategory
mscorlib (12)
system\char.cs (10)
527return (CharUnicodeInfo.GetUnicodeCategory(s, index) == UnicodeCategory.Control); 543return (CharUnicodeInfo.GetUnicodeCategory(s, index) == UnicodeCategory.DecimalDigitNumber); 562return (CheckLetter(CharUnicodeInfo.GetUnicodeCategory(s, index))); 577return CheckLetterOrDigit(CharUnicodeInfo.GetUnicodeCategory(s, index)); 596return (CharUnicodeInfo.GetUnicodeCategory(s, index) == UnicodeCategory.LowercaseLetter); 639return (CheckNumber(CharUnicodeInfo.GetUnicodeCategory(s, index))); 662return (CheckPunctuation(CharUnicodeInfo.GetUnicodeCategory(s, index))); 707return (CheckSeparator(CharUnicodeInfo.GetUnicodeCategory(s, index))); 763return (CheckSymbol(CharUnicodeInfo.GetUnicodeCategory(s, index))); 783return (CharUnicodeInfo.GetUnicodeCategory(s, index) == UnicodeCategory.UppercaseLetter);
system\globalization\charunicodeinfo.cs (1)
220UnicodeCategory uc = GetUnicodeCategory(s, index);
system\globalization\numberformatinfo.cs (1)
215CharUnicodeInfo.GetUnicodeCategory(nativeDig[i], 0) != UnicodeCategory.PrivateUse) {