using System; public static class StringExtensions { public static bool ContainsIgnoreCase(this string me, string other) { return me.ToLower().Contains(other.ToLower()); } }