Pregunta de entrevista de Gigya

Write the prototype and implementation of the LINQ function: "Where".

Respuesta de la entrevista

Anónimo

17 abr 2017

static class Ext { public static IEnumerable MyWhere(this T[] array, Func func) { foreach(T t in array) { if (func(t)) yield return t; } } }

1