Is this your company?
Write the prototype and implementation of the LINQ function: "Where".
Anonymous
static class Ext { public static IEnumerable MyWhere(this T[] array, Func func) { foreach(T t in array) { if (func(t)) yield return t; } } }
Check out your Company Bowl for anonymous work chats.