XCom.Node.Node C# (CSharp) Method

Node() public method

public Node ( string str ) : System
str string
return System
		public Node(string str)
		{
			next=null;
			this.str=str;
		}
	}
Node