コード例 #1
0
ファイル: Action.cs プロジェクト: titovmaxim/Flow_Csharp
 public static Action Action(this IFlowChangeable changeable, object owner, Action action)
 {
     return(Flow.Action(owner, changeable, action));
 }
コード例 #2
0
ファイル: Action.cs プロジェクト: titovmaxim/Flow_Csharp
 public static Action Action <T1>(this IFlowSource <T1> source, object owner, Action <T1> action)
 {
     return(Flow.Action(owner, source, action));
 }