Beispiel #1
0
 public PropertyPin(Node node, PinDirection direction, PropertyInfo propertyInfo)
 {
     _node = node;
     Direction = direction;
     _propertyInfo = propertyInfo;
 }
Beispiel #2
0
 public ExecutionPath(Node[] topologicallySortedNodes)
 {
     TopologicallySortedNodes = topologicallySortedNodes;
     Nodes = new HashSet<Node>(topologicallySortedNodes, ReferenceEqualityComparer<Node>.Instance);
 }