Created
November 15, 2018 22:57
-
-
Save DeonPieterse/147f130ae6f5aa14919e0898331a514d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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