using System; using System.Collections.Generic; public static class CollectionExtensions { public static bool Contains(this T[] source, T value) { return Array.IndexOf(source, value) != -1; } }