Est-ce votre entreprise ?
Write the prototype and implementation of the LINQ function: "Where".
Utilisateur anonyme
static class Ext { public static IEnumerable MyWhere(this T[] array, Func func) { foreach(T t in array) { if (func(t)) yield return t; } } }