public static void Main()
StringNode word=new StringNode("");
public StringNode(string x)
public StringNode(string x, StringNode next)
public StringNode GetNext()
return (this.next != null);
public void SetValue(string x)
public void SetNext(StringNode next)
public override string ToString()
return (" " + this.value);