Advertisement
Guest User

Untitled

a guest
Feb 14th, 2021
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace CustomLinkedList
  6. {
  7.     public class Node<T>
  8.     {
  9.         public Node(T value)
  10.         {
  11.             this.Value = value;
  12.         }
  13.         public T Value { get; set; }
  14.         public Node<T> Next { get; set; }
  15.         public Node<T> Previous { get; set; }
  16.     }
  17. }
  18.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement