Hi,
I'm trying to read from an Arraylist in C#, I have the following code:
for (int i = 0; i < arraySize; i++)
{
string arrayListInput = inputArrayList[i];
....
}
basically I want to read every line from the arraylist to do some computations but apparently the contents of string arrayListInput are remaining "null" how can I read each line from the arraylist and store it as string?
Thanks!