isoZachary

Test LL: Program.cs

Jul 9th, 2014
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. using System;
  2.  
  3. using SampleLinkedList.LinkedList;
  4.  
  5. namespace SampleLinkedList
  6. {
  7. class Program
  8. {
  9. static void Main(string[] args)
  10. {
  11. LinkedList<int> myList = new LinkedList<int>();
  12. myList.setRoot(4);
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment