Advertisement
Iv555

Untitled

Jan 31st, 2022
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.38 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4.  
  5. namespace CustomDoublyLinkedList
  6. {
  7.     public class ListNode<T>
  8.     {
  9.         public T Value { get; set; }
  10.         public ListNode<T> NextNode { get; set; }
  11.         public ListNode<T> PreviosNode { get; set; }
  12.  
  13.         public ListNode(T value)
  14.         {
  15.             this.Value = value;
  16.        
  17.     }
  18. }
  19. }
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement