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