Let us say I have this code:
private readonly static List<string> ExtPos = new List<string> {".dat", ".wef"};
private static int ExtToPos(string ext)
{
return ExtPos.IndexOf(ext /*, StringComparer.InvariantCultureIgnoreCase*/);
}
How can I ignore the letter case in content search?
Thanks