예제 #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)
 {
 }