I created a list of instances of a class, I don't know how to delete for exemple item at index 1 oPerson[1] ...
Here is my code
ViewerList[] oPerson = new ViewerList[2];
oPerson[0] = new ViewerList();
oPerson[0].DVRBrandID = "0";
oPerson[0].DVRModelID = "0";
oPerson[0].DVRViewerPath = "";
oPerson[1] = new ViewerList();
oPerson[1].DVRBrandID = "0";
oPerson[1].DVRModelID = "0";
oPerson[1].DVRViewerPath = "";
I had this issue a few times, I know it might be easier to work using an ArrayList but I want to keep all my code as is !
Thanks again
Dave