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