コード例 #1
0
ファイル: OperatorOutput.cs プロジェクト: nlebeck/CRA
 public OperatorOutput(ref IVertex vertex, int thisId)
 {
     _operator = (OperatorBase)vertex;
     _thisId   = thisId;
 }
コード例 #2
0
 public OperatorInput(ref IVertex vertex, int thisId, bool isSecondaryInput = false)
 {
     _operator         = (OperatorBase)vertex;
     _thisId           = thisId;
     _isSecondaryInput = isSecondaryInput;
 }