I declaring an array of linked list in C# and now i want to remove an element in index i that i not equal to first or last. How can i do it???
LinkedList<DataTable>[] Arraylinked= new LinkedList<DataTable[1000];
Arraylinked[0].AddLast(data table11);
Arraylinked[1].AddLast(data table12);
Arraylinked[2].AddLast(data table13);
Arraylinked[3].AddLast(data table14);
Now, I want to remove Arraylinked[2] in my arraylinkedlist. How can do it???