コード例 #1
0
 public ReverseStringNode(IEvaluableOutputDataPin aFrom)
 {
     idps.Add(new InputDataPin(typeof(string), aFrom));
     odps.Add(new OutputDataPin(typeof(string), this));
 }
コード例 #2
0
 public InputDataPin(Type type, IEvaluableOutputDataPin incomingOdp)
 {
     this.incomingOdp = incomingOdp;
     Type             = type;
 }