17 references to ToUpper
Microsoft.AspNetCore.Grpc.JsonTranscoding (1)
src\aspnetcore\src\Grpc\JsonTranscoding\src\Shared\ServiceDescriptorHelpers.cs (1)
623result += char.ToUpper(input[i], CultureInfo.InvariantCulture);
Microsoft.CodeAnalysis.NetAnalyzers (2)
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\DefineAccessorsForAttributeArguments.Fixer.cs (1)
136string propName = char.ToUpper(parameterSymbol.Name[0], CultureInfo.InvariantCulture).ToString() + parameterSymbol.Name[1..];
Microsoft.CodeQuality.Analyzers\ApiDesignGuidelines\IdentifiersShouldNotContainUnderscores.Fixer.cs (1)
80builder.Append(isPreviousUnderscore ? char.ToUpper(c, CultureInfo.InvariantCulture) : c);
ResultsOfTGenerator (1)
Program.cs (1)
1077c[0] = char.ToUpper(origValueSpan[0], CultureInfo.InvariantCulture);
System.Windows.Forms (7)
System\Windows\Forms\ActiveX\AxHost.cs (1)
1759wParam = (WPARAM)char.ToUpper(charCode, CultureInfo.CurrentCulture),
System\Windows\Forms\Control.cs (2)
6615char c2 = char.ToUpper(charCode, CultureInfo.CurrentCulture); 6629char c1 = char.ToUpper(text[pos], CultureInfo.CurrentCulture);
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (2)
2557char charToCompare = char.ToUpper(charCode, CultureInfo.CurrentCulture); 2558char 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)
249mnemonic = char.ToUpper(text[i + 1], CultureInfo.CurrentCulture);
System.Windows.Forms.Design (4)
System\Windows\Forms\Design\StandardMenuStripVerb.cs (1)
471name[0] = char.ToUpper(name[0], CultureInfo.InvariantCulture);
System\Windows\Forms\Design\ToolStripDesigner.cs (3)
1668name = char.ToUpper(name[0], CultureInfo.InvariantCulture) + name[1..]; 1715c = char.ToUpper(c, CultureInfo.CurrentCulture); 1735? 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();