SeedSequences.Independent Method

Creates a new seed sequence that is independent from other sequences generated by this method.

Definition

Namespace: Numerics.NET.Random
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.3.0
C#
public static SeedSequence Independent()

Return Value

SeedSequence
A new instance of SeedSequence initialized with high-entropy, uncorrelated seed values.

Remarks

This method uses cryptographically strong random number generation to ensure that each returned seed sequence is statistically independent from others. It is suitable for scenarios where independent random number streams are required, but reproducibility is not a concern.

See Also