// A SinglyLinkedList constructor.
 public SinglyLinkedList()
 {
     first = null;
 }
 // Constructor.
 public SLLNode(string value)
 {
     Value = value;
     next  = null;
 }