What is the StringComparison method of string.IndexOf(string)?
See the question and my original answer on StackOverflowYes, the .NET Framework (and core) source is available, so here is the relevant code : https://referencesource.microsoft.com/#mscorlib/system/string.cs,2307
public int IndexOf(String value) { return IndexOf(value, StringComparison.CurrentCulture); }