I have the following code:
using System; namespace DataStructures { public class Node { public Node next; public string data; }