8 references to IndexOf
mscorlib (5)
system\globalization\compareinfo.cs (2)
788
return source.
IndexOf
(value.ToString(), startIndex, count, StringComparison.OrdinalIgnoreCase);
841
return source.
IndexOf
(value, startIndex, count, StringComparison.OrdinalIgnoreCase);
system\string.cs (3)
2335
return
IndexOf
(value, startIndex, count, StringComparison.CurrentCulture);
2340
return
IndexOf
(value, 0, this.Length, comparisonType);
2345
return
IndexOf
(value, startIndex, this.Length - startIndex, comparisonType);
PresentationFramework (1)
src\Framework\System\Windows\Documents\FixedSOMPageConstructor.cs (1)
444
charIndex = s.
IndexOf
(" ", charIndex+1, s.Length - charIndex -1, StringComparison.Ordinal);
System.Data (2)
fx\src\data\System\Data\Common\DBCommandBuilder.cs (2)
1492
if (useQuotes && (name.
IndexOf
(quotePrefix, currentPos, quotePrefix.Length, StringComparison.Ordinal) == currentPos)) {
1507
if ((currentPos < name.Length) && (name.
IndexOf
(quoteSuffix, currentPos, quoteSuffix.Length, StringComparison.Ordinal) == currentPos)) {