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