How can I convert a string of numbers separated by a space into an array of int with one line of code?
I divided it into strings, but I don’t know how to convert it into an int array without creating an additional string array.
int [] Mas = textBox1.Text.Split(' ')