I have hard-coded this array of ints
int[] numbersToSort = {100, 23, -1, 3, 99, 0};
I want to use Console.Readline() to take input from the user, but it only takes string input. I can't use Convert.ToInt32() because it doesn't take array for parameter.
How can i convert array of string to array of int?