Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. public class Node<T>
  2. {
  3. public T Value { get; set; }
  4.  
  5. public Node<T> Next { get; set; }
  6.  
  7. public Node(T value)
  8. {
  9. this.Value = value;
  10. }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement