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