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