public Node(int Value, Node Next)
public void SetValue(int Value)
public void SetNext(Node Next)
return this.Next != null;
public static void Print(Node Head)
Console.Write("-> {0} ", temp.GetValue());
public static void Main()
Node Head1 = new Node(18);
Node Head2 = new Node(11);
Node Head3 = new Node(54);