示例#1
0
文件: Node.cs 项目: marcarvalho/byps
		public Node(Node rhs)
		{
			this.nextValue = rhs.nextValue;
			this.meValue = rhs.meValue;
			this.mapOfNodesValue = rhs.mapOfNodesValue;
			this.listOfNodesValue = rhs.listOfNodesValue;
		}		
示例#2
0
文件: Node.cs 项目: marcarvalho/byps
		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;
		}