Declaration
public static T Shuffle<T>(
this T list,
Random rnd = null
)
Summary
Brings the elements of the given list into a random order.
Generic type parameters
Parameters
this T | list |
List to shuffle. |
Random | rnd |
Random number generator, or null to use Rnd. |
Returns
The list operated on.