Click or drag to resize

RandomSeed Class

[Missing <summary> documentation for "T:Altaxo.Calc.Random.RandomSeed"]

Inheritance Hierarchy
SystemObject
  Altaxo.Calc.RandomRandomSeed

Namespace: Altaxo.Calc.Random
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static class RandomSeed

The RandomSeed type exposes the following members.

Methods
 NameDescription
Public methodStatic memberGuid Provides a seed based on time and unique GUIDs. WARNING: There is only low randomness in this seed, but at least quick repeated calls will result in different seed values. Do not use for cryptography!
Public methodStatic memberRobust Provides a seed based on an internal random number generator (crypto if available), time and unique GUIDs. WARNING: There is only medium randomness in this seed, but quick repeated calls will result in different seed values. Do not use for cryptography!
Public methodStatic memberTime Provides a time-dependent seed value, matching the default behavior of System.Random. WARNING: There is no randomness in this seed and quick repeated calls can cause the same seed value. Do not use for cryptography!
Top
See Also