XCom.Node.Node C# (CSharp) Méthode

Node() public méthode

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