if a string contains another string ignoring the case, there is no method available for string with ignore case

we can create extension to string using following !

public static bool Contains(this string original, string value, StringComparison comparisionType)
{
return original.IndexOf(value, comparisionType) >= 0;
}

Happy coding !