Skip to content

Instantly share code, notes, and snippets.

@DeonPieterse
Created November 15, 2018 22:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DeonPieterse/147f130ae6f5aa14919e0898331a514d to your computer and use it in GitHub Desktop.
Save DeonPieterse/147f130ae6f5aa14919e0898331a514d to your computer and use it in GitHub Desktop.
class Node<T>
{
private T _object { get; set; }
public Node<T> nextNode { get; set; }
public Node<T> previousNode { get; set; }
public Node(T _object)
{
this._object = _object;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment