Mid From PDF Power Questions High-Impact Interview Questions

Custom LINQ Operator?

public static class LinqExtensions
{
public static IEnumerable<T> WhereNot<T>(this IEnumerable<T> source, Func<T,bool>

predicate)

{
foreach (var item in source)
if (!predicate(item))

yield return item;

}
}

Usage

var employees = list.WhereNot(e => e.IsDeleted);

More from Career Preparation

All questions for this course
Toolliyo Assistant
Ask about tutorials, ebooks, training, pricing, mentor services, and support. I use public site content only—not admin or internal tools.

care@toolliyo.com

Need callback? Share your details