22 references to ToUpper
mscorlib (3)
system\char.cs (2)
387return ToUpper(c, CultureInfo.CurrentCulture); 393return ToUpper(c, CultureInfo.InvariantCulture);
system\guid.cs (1)
621char upperCaseCh = Char.ToUpper(ch, CultureInfo.InvariantCulture);
System (1)
net\System\Net\_HTTPDateParse.cs (1)
85return(Char.ToUpper(c, CultureInfo.InvariantCulture));
System.ServiceModel.Web (1)
System\ServiceModel\Web\HttpDateParse.cs (1)
87return (Char.ToUpper(c, CultureInfo.InvariantCulture));
System.Web (1)
Util\ParseHttpDate.cs (1)
117} else if ( ((Char.ToUpper(s[0 + startIndex], CultureInfo.InvariantCulture)) == monthString[0]) &&
System.Web.Mobile (1)
UI\MobileControls\Adapters\ChtmlImageAdapter.cs (1)
53writer.Write(Char.ToUpper(symbolChars[0], CultureInfo.InvariantCulture));
System.Windows.Forms (9)
winforms\Managed\System\WinForms\AxHost.cs (1)
2116msg.wParam = (IntPtr) Char.ToUpper(charCode, CultureInfo.CurrentCulture);
winforms\Managed\System\WinForms\Control.cs (2)
7696char c2 = Char.ToUpper(charCode, CultureInfo.CurrentCulture); 7703char c1 = Char.ToUpper(text[pos], CultureInfo.CurrentCulture);
winforms\Managed\System\WinForms\Menu.cs (2)
634char menuKey = Char.ToUpper((char) NativeMethods.Util.LOWORD(m.WParam), CultureInfo.CurrentCulture); 671Char.ToUpper(mi.Text[0], CultureInfo.CurrentCulture) == key;
winforms\Managed\System\WinForms\ToolStrip.cs (2)
2759char charToCompare = Char.ToUpper(charCode, CultureInfo.CurrentCulture); 2760char firstLetter = Char.ToUpper(text[0], CultureInfo.CurrentCulture);
winforms\Managed\System\WinForms\WebBrowserBase.cs (1)
394msg.wParam = (IntPtr) Char.ToUpper(charCode, CultureInfo.CurrentCulture);
winforms\Managed\System\WinForms\WinFormsUtils.cs (1)
274mnemonic = Char.ToUpper(text[i+1], CultureInfo.CurrentCulture);
System.Workflow.Activities (4)
Rules\Parser\Parser.cs (3)
982char upperFirstCharacter = char.ToUpper(firstCharacter, CultureInfo.InvariantCulture); 988if (char.ToUpper(key[0], CultureInfo.InvariantCulture) == upperFirstCharacter) 1002if (char.ToUpper(key[0], CultureInfo.InvariantCulture) == upperFirstCharacter)
Rules\Parser\Scanner.cs (1)
96if (char.ToUpper(kvp.Key[0], CultureInfo.InvariantCulture) == upperFirstCharacter)
System.Xml (1)
System\Xml\Serialization\CodeIdentifier.cs (1)
42return char.ToUpper(identifier[0], CultureInfo.InvariantCulture).ToString(CultureInfo.InvariantCulture) + identifier.Substring(1);
UIAutomationClientsideProviders (1)
MS\Internal\AutomationProxies\WindowsMenu.cs (1)
2470return string.Format(CultureInfo.CurrentCulture, "{0}{1}{2}", sCanonicalsKeyword, menuText.Substring(pos + cKeyChars + 1, cMenuChars - (pos + cKeyChars + 2)), Char.ToUpper(menuText[cMenuChars - 1], CultureInfo.InvariantCulture));