public static void Times(this int times, Action actionFn) { Proxy.Times(times, actionFn); }
public static List <T> Times <T>(this int times, Func <int, T> actionFn) { return(Proxy.Times(times, actionFn)); }
public static IEnumerable <int> Times(this int times) { return(Proxy.Times(times)); }