I have the following function:
string str = "1 2 3 4 5"; //string para separar
string[] ArrayValor = str.Split(" ");
//nesse caso o array seria {"1","2","3","4","5"}
But I wanted something more generic, for example, if the user entered "1-2...
asked by
18.07.2017 / 22:09