I'd like to read every 2nd variable from result[] to questions.
string[] questionstr = null;
int ii = 0;
for (int i = 0; result.Length > i;)
{
questionstr[ii] = result[i];
ii = ii+1;
i = i+2;
}
it gives me System.NullReferenceException at ii=ii+1; I tried ii++; too but same error.