コード例 #1
0
 public static IEnumerable <T> ValueOrEmpty <T>(
     this Maybe <IEnumerable <T> > @this)
 {
     return(@this.ValueOrElse(Enumerable.Empty <T>()));
 }