Advertisement
Guest User

Untitled

a guest
Feb 14th, 2021
203
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.  
  3. namespace CustomLinkedList
  4. {
  5.     public class StartUp
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             CustomLinkedList<string> customLinkedList = new CustomLinkedList<string>();
  10.             customLinkedList.AddFirst("gogi");
  11.             customLinkedList.AddFirst("djimi");
  12.             customLinkedList.AddFirst("pepi");
  13.         }
  14.     }
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement