Added Delete Method and updated Indexing Methods

This commit is contained in:
2022-03-04 10:49:08 +00:00
parent 02f49782ee
commit 8165bb849b
2 changed files with 34 additions and 2 deletions

View File

@ -20,4 +20,6 @@ list2.Append(3);
LinkedList<int> list3 = LinkedList<int>.Create(list, list2);
int x = list3[5] = 5;
list3.Insert(4, 1);
list3.Delete(0);
Console.ReadLine();