public static IEnumerable <string> Where(this StringCollection collection, Func <string, bool> predicate) { return(collection.Select().Where(predicate)); }
public static IEnumerable <T> SelectMany <T>(this StringCollection collection, Func <string, IEnumerable <T> > selector) { return(collection.Select().SelectMany(selector)); }