Ejemplo n.º 1
0
 public static List <T> Times <T>(this int times, Func <int, T> actionFn)
 {
     return(Proxy.Times(times, actionFn));
 }
Ejemplo n.º 2
0
 public static void Times(this int times, Action actionFn)
 {
     Proxy.Times(times, actionFn);
 }
Ejemplo n.º 3
0
 public static List <IAsyncResult> TimesAsync(this int times, Action actionFn)
 {
     return(Proxy.TimesAsync(times, actionFn));
 }
Ejemplo n.º 4
0
 public static IEnumerable <int> Times(this int times)
 {
     return(Proxy.Times(times));
 }