コード例 #1
0
 public FlowInput AddFlowInput(string name, FlowHandler pointer, string ID = "")
 {
     if (string.IsNullOrEmpty(ID))
     {
         ID = name;
     }
     return((FlowInput)(_inputPorts[ID] = new FlowInput(this, name, ID, pointer)));
 }
コード例 #2
0
 ///Bind the port to the target FlowInput
 public void BindTo(FlowInput target)
 {
     this.pointer = target.pointer;
 }