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