コード例 #1
0
 public static Worker <int, Output> OnStep <Output>(this Worker <int, Output> current, MethodStepIndex <Output> method)
 {
     current.onStepIndex = method;
     return(current);
 }
コード例 #2
0
 public static Worker <Value> OnStep <Value>(this Worker <Value> current, MethodStepIndex method)
 {
     current.onStepIndex = method;
     return(current);
 }