Reverse the values in an array to their opposite order

double[] NumbersArray = {
 1,
 2,
 3,
 9,
 8,
 7,
 System.Math.PI
};
Array.Reverse(NumbersArray);

No comments:

Post a Comment