ListExtensions.Reversed<T>
Extension Method in ListExtensions
Declaration
public static List<T> Reversed<T>(this List<T> list)Description
Reverses the order of the items in the list.
Type Parameters
| T | The type of the list. |
Parameters
| list | The list to reverse. |
Returns
| ListT | A new list with the order of the items reversed. |