Hi there, i'm writing a method to store elements to an arraylist and deleting at index.
This if for adding.
void AddToArrayList(int index, string text){
list.insert(index, text);
}
but this doesn't work, gives out of range not handled error.
Loading
VulpesPosted Apr 7, 2013, 7:06 PM