There is direct method Enumerable.Reverse, you can do as below
listNum .Reverse()
for your code do like this
for (int i = ListLength -1; i >= 0; i--)
reverseList.Add( listNum[i]);
just for the information it’s List
it’s not array
2
solved Reversing a List of ints