Example #1
0
 public static Lottery <T> Combine(Lottery <T> lottery1, Lottery <T> lottery2)
 {
     return(lottery1.CombineWith(lottery2) as Lottery <T>);
 }