Exemplo n.º 1
0
 public static Option <string> WhereNotNullOrWhiteSpace(this Option <string> value)
 {
     return(value.Where(s => !string.IsNullOrWhiteSpace(s)));
 }
Exemplo n.º 2
0
 public static Option <string> WhereNotNullOrEmpty(this Option <string> value)
 {
     return(value.Where(s => !string.IsNullOrEmpty(s)));
 }