8 references to IsAsciiLetterUpper
Aspire.Hosting.Yarp (1)
YarpJsonConfigGeneratorBuilder.cs (1)
154
if (string.IsNullOrEmpty(name) || !char.
IsAsciiLetterUpper
(name[0]))
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.cs (1)
744
if (char.
IsAsciiLetterUpper
(name[i]))
src\libraries\System.Private.CoreLib\src\System\Globalization\IcuLocaleData.cs (1)
3816
lower_case[i] = char.
IsAsciiLetterUpper
(ch) ? (byte)(ch | 0x20) : (byte)ch;
src\libraries\System.Private.CoreLib\src\System\Globalization\IdnMapping.cs (3)
656
output.Append((char)(char.
IsAsciiLetterUpper
(ascii[copyAscii]) ? ascii[copyAscii] - 'A' + 'a' : ascii[copyAscii]));
823
if (char.
IsAsciiLetterUpper
(cp))
855
if (char.
IsAsciiLetterUpper
(bcp))
src\libraries\System.Private.CoreLib\src\System\Globalization\TextInfo.cs (1)
400
if (char.
IsAsciiLetterUpper
(c))
System.Private.Uri (1)
System\DomainNameHelper.cs (1)
75
Debug.Assert(index == -1 || char.
IsAsciiLetterUpper
(str[start + index]));