Click or drag to resize

XListShuffleT Method

Shuffles the elements of a list using the specified Random instance.

Namespace:  Linq.Extras
Assembly:  Linq.Extras (in Linq.Extras.dll) Version: 5.0.0+96a4f4bfed64095342c5df107c1fe1fb95603ee5
Syntax
public static void Shuffle<T>(
	this IList<T> list,
	Random? random = null
)

Parameters

list
Type: System.Collections.GenericIListT
The list to shuffle.
random (Optional)
Type: SystemRandom
A random number generator to use to shuffle the list. If null, a new random number generator will be used.

Type Parameters

T
The type of the elements in list.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IListT. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also