XCom.Node.Node C# (CSharp) 메소드

Node() 공개 메소드

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