Use Linq reverse method and string.join
You can:
Using System.Linq;
Console.WriteLine(String.Join(" ", arr.Reverse()));
That will reverse the array and print the list separated by spaces to the console
2
solved Programmr “Reverse Array” C# [closed]