コード例 #1
0
ファイル: IoCFunction.cs プロジェクト: devaspot/io
 public IoCFunction(IoState state, string name, IoMethodFunc func)
 {
     isActivatable = true;
     this.state = state;
     createSlots();
     createProtos();
     uniqueId = 0;
     funcName = name;
     this.func = func;
 }
コード例 #2
0
ファイル: IoCFunction.cs プロジェクト: ypyf/io
 public IoCFunction(IoState state, string name, IoMethodFunc func)
 {
     isActivatable = true;
     this.state    = state;
     createSlots();
     createProtos();
     uniqueId  = 0;
     funcName  = name;
     this.func = func;
 }
コード例 #3
0
ファイル: IoCFunction.cs プロジェクト: devaspot/io
 public IoCFunction(string name, IoMethodFunc func)
     : this(null, name, func)
 {
 }
コード例 #4
0
ファイル: IoCFunction.cs プロジェクト: ypyf/io
 public IoCFunction(string name, IoMethodFunc func) : this(null, name, func)
 {
 }