Hi, whats the fastest way to keep adding data onto the end of an array? I know you cant resize an array but this is the method ive come up with:
Skute
"There are 10 types of people in this World, those that understand binary, and those that don't!"
Code:
string[] strTest1 = new string[1];
strTest1[0] = "Hello!";
string[] strTest2 = new string[2];
strTest2[0] = strTest1[0];
strTest2[1] = "Another Test!";
strTest1 = strTest2;
Skute
"There are 10 types of people in this World, those that understand binary, and those that don't!"