Esempio n. 1
0
		public Node(Node rhs)
		{
			this.nextValue = rhs.nextValue;
			this.meValue = rhs.meValue;
			this.mapOfNodesValue = rhs.mapOfNodesValue;
			this.listOfNodesValue = rhs.listOfNodesValue;
		}		
Esempio n. 2
0
		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;
		}