3
I can’t put together all the numbers in an array, I’m not talking about adding, but concatenating, and converting into an integer. See the example:
ex:
string[] matriz = new string[3];
matriz[0] = "2";
matriz[1] = "5";
matriz[2] = "0";
Do I want to add the numeral 2.5.0 to 250? The example is using an array string, but it could be an array of integers, it makes no difference to me, as long as I can concatenate them and place them in an integer with the value 250.