Added Delete Method and updated Indexing Methods
This commit is contained in:
@ -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();
|
Reference in New Issue
Block a user