public Node(Node rhs) { this.nextValue = rhs.nextValue; this.meValue = rhs.meValue; this.mapOfNodesValue = rhs.mapOfNodesValue; this.listOfNodesValue = rhs.listOfNodesValue; }
public Node(Node @next, Node @me, IDictionary<String,Node> @mapOfNodes, IList<Node> @listOfNodes) { this.nextValue = @next; this.meValue = @me; this.mapOfNodesValue = @mapOfNodes; this.listOfNodesValue = @listOfNodes; }