16 references to ToUpper
Microsoft.AspNetCore.Grpc.JsonTranscoding (1)
src\Grpc\JsonTranscoding\src\Shared\ServiceDescriptorHelpers.cs (1)
623result += char.ToUpper(input[i], CultureInfo.InvariantCulture);
Microsoft.AspNetCore.Grpc.Swagger (1)
src\Grpc\JsonTranscoding\src\Shared\ServiceDescriptorHelpers.cs (1)
623result += char.ToUpper(input[i], CultureInfo.InvariantCulture);
ResultsOfTGenerator (1)
Program.cs (1)
1077c[0] = char.ToUpper(origValueSpan[0], CultureInfo.InvariantCulture);
System.Windows.Forms (7)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1762wParam = (WPARAM)char.ToUpper(charCode, CultureInfo.CurrentCulture),
System\Windows\Forms\Control.cs (2)
6300char c2 = char.ToUpper(charCode, CultureInfo.CurrentCulture); 6314char c1 = char.ToUpper(text[pos], CultureInfo.CurrentCulture);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (2)
2563char charToCompare = char.ToUpper(charCode, CultureInfo.CurrentCulture); 2564char firstLetter = char.ToUpper(text[0], CultureInfo.CurrentCulture);
System\Windows\Forms\Controls\WebBrowser\WebBrowserBase.cs (1)
335wParam = (WPARAM)char.ToUpper(charCode, CultureInfo.CurrentCulture),
System\Windows\Forms\Internal\WinFormsUtils.cs (1)
218mnemonic = char.ToUpper(text[i + 1], CultureInfo.CurrentCulture);
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\StandardMenuStripVerb.cs (1)
486name[0] = char.ToUpper(name[0], CultureInfo.InvariantCulture);
System\Windows\Forms\Design\ToolStripDesigner.cs (3)
1692name = char.ToUpper(name[0], CultureInfo.InvariantCulture) + name[1..]; 1739c = char.ToUpper(c, CultureInfo.CurrentCulture); 1759? char.ToUpper(c, CultureInfo.CurrentCulture)
UIAutomationClientSideProviders (1)
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
2449return string.Format(CultureInfo.CurrentCulture, "{0}{1}{2}", sCanonicalsKeyword, menuText.Substring(pos + cKeyChars + 1, cMenuChars - (pos + cKeyChars + 2)), Char.ToUpper(menuText[cMenuChars - 1], CultureInfo.InvariantCulture));
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
482string upperKey = Char.ToUpper(charCode, CultureInfo.CurrentCulture).ToString();