Usually a vetor starts from element 0 , and so on until it reaches the size of which it was declared or assigned, eg:
string[] v = {1, 2 , 3};
// equivalente á:
v[0] = 1;
v[1] = 2;
v[2] = 3;
I want to know how to do in C#...
asked by
13.01.2016 / 19:21