Shuffles an enumerable source (randomizes its elements) using a new FastRandom instance.
Namespace: KGySoft.CoreLibraries
Assembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 7.0.0-preview.3
Syntax
Parameters
- source
- Type: System.Collections.GenericIEnumerableT
The IEnumerableT to shuffle its elements.
Type Parameters
- T
- The type of the elements of source.
Return Value
Type: IEnumerableTAn IEnumerableT that can enumerate the items of source in a randomized order.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT. 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).Remarks
![]() |
---|
Subsequent enumerations of the returned collection shuffles the order of the items again an again. |
![]() |
---|
The enumerator of the returned collection does not support the IEnumerator.Reset method. |
See Also