42 references to ToLower
mscorlib (6)
system\char.cs (2)
415
return
ToLower
(c, CultureInfo.CurrentCulture);
421
return
ToLower
(c, CultureInfo.InvariantCulture);
system\globalization\datetimeformatinfo.cs (3)
2779
ch = Char.
ToLower
(ch, this.Culture);
2872
if (temp != null && Char.
ToLower
(temp.tokenString[0], this.Culture) != ch) {
2902
char ch = Char.
ToLower
(str[0], this.Culture);
system\guid.cs (1)
884
if(str.Length > i+1 && str[i] == '0' && (Char.
ToLower
(str[i+1], CultureInfo.InvariantCulture) == 'x'))
System (18)
compmod\system\collections\specialized\fixedstringlookup.cs (1)
70
searchChar = char.
ToLower
(value[pos], CultureInfo.InvariantCulture);
net\System\URI.cs (2)
5210
|| (Char.
ToLower
(path1[i], CultureInfo.InvariantCulture)
5211
!= Char.
ToLower
(path2[i], CultureInfo.InvariantCulture))))
net\System\UriHelper.cs (2)
87
if (Char.
ToLower
(chMe, CultureInfo.InvariantCulture) != Char.
ToLower
(chShe, CultureInfo.InvariantCulture))
regex\system\text\regularexpressions\RegexBoyerMoore.cs (3)
62
sb.Append(Char.
ToLower
(pattern[i], culture));
315
chTest = Char.
ToLower
(chTest, _culture);
341
chTest = Char.
ToLower
(chTest, _culture);
regex\system\text\regularexpressions\RegexCharClass.cs (1)
642
range._first = range._last = Char.
ToLower
(range._first, culture);
regex\system\text\regularexpressions\RegexInterpreter.cs (4)
235
return(runci ? Char.
ToLower
(ch, runculture) : ch);
262
if (str[--c] != Char.
ToLower
(runtext[--pos], runculture))
303
if (Char.
ToLower
(runtext[--cmpos], runculture) != Char.
ToLower
(runtext[--pos], runculture))
regex\system\text\regularexpressions\RegexParser.cs (5)
1090
ch = Char.
ToLower
(ch, _culture);
1888
sb.Append(Char.
ToLower
(str[i], _culture));
1898
ch = Char.
ToLower
(ch, _culture);
1997
ch = Char.
ToLower
(ch, _culture);
2007
ch = Char.
ToLower
(ch, _culture);
System.Data (2)
fx\src\data\System\Data\Common\AdapterUtil.cs (2)
2011
int h = hexDigits.IndexOf(Char.
ToLower
(c[i], invariant));
2012
int l = hexDigits.IndexOf(Char.
ToLower
(c[i+1], invariant));
System.Runtime.Serialization (1)
System\Xml\EncodingStreamWrapper.cs (1)
447
if (key[i] != Char.
ToLower
((char)buffer[offset + i], System.Globalization.CultureInfo.InvariantCulture))
System.Web (5)
UI\WebControls\FontUnit.cs (1)
161
char firstChar = Char.
ToLower
(value[0], CultureInfo.InvariantCulture);
Util\ParseHttpDate.cs (2)
118
((Char.
ToLower
(s[1 + startIndex], CultureInfo.InvariantCulture)) == monthString[1]) &&
119
((Char.
ToLower
(s[2 + startIndex], CultureInfo.InvariantCulture)) == monthString[2]) ) {
Util\SymbolEqualComparer.cs (2)
57
if (Char.
ToLower
(charLeft, CultureInfo.InvariantCulture) == charRight) {
62
if (Char.
ToLower
(charRight, CultureInfo.InvariantCulture) == charLeft) {
System.Web.Mobile (2)
UI\MobileControls\DeviceSpecificChoice.cs (2)
263
Char.
ToLower
(name[0], CultureInfo.InvariantCulture) == 'o' &&
264
Char.
ToLower
(name[1], CultureInfo.InvariantCulture) == 'n')
System.Windows.Forms (7)
winforms\Managed\System\Resources\ResXFileRef.cs (2)
135
if ((path1[i] != path2[i]) && (compareCase || (Char.
ToLower
(path1[i], CultureInfo.InvariantCulture) != Char.
ToLower
(path2[i], CultureInfo.InvariantCulture))))
winforms\Managed\System\WinForms\Control.cs (2)
7705
if (c1 == c2 || Char.
ToLower
(c1, CultureInfo.CurrentCulture) == Char.
ToLower
(c2, CultureInfo.CurrentCulture)) {
winforms\Managed\System\WinForms\ToolStrip.cs (2)
2761
if (firstLetter == charToCompare ||(Char.
ToLower
(charCode, CultureInfo.CurrentCulture) == Char.
ToLower
(text[0], CultureInfo.CurrentCulture)) ) {
winforms\Managed\System\WinForms\WinFormsUtils.cs (1)
277
mnemonic = Char.
ToLower
(text[i+1], CultureInfo.CurrentCulture);
System.Xml (1)
System\Xml\Serialization\CodeIdentifier.cs (1)
56
return char.
ToLower
(identifier[0], CultureInfo.InvariantCulture).ToString(CultureInfo.InvariantCulture) + identifier.Substring(1);