[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Shuffles the list. User supplies the randomizer.

Namespace: net.esper.compat
Assembly:   NEsper (in NEsper.dll)

Syntax

Visual Basic (Declaration)
Public Shared Sub Shuffle(Of T) ( _
	list As IList(Of T), _
	random As Random _
)
C#
public static void Shuffle<T> (
	IList<T> list,
	Random random
)
Visual C++
public:
generic<typename T>
static void Shuffle (
	IList<T>^ list, 
	Random^ random
)

Parameters

list
System.Collections.Generic.IList<(Of T>)
random
System.Random

Type Parameters

T