RandomExtensionsNextInt32Sequence Method |
Returns an infinite sequence of uniform random 32-bit signed integers within the specified range.
Namespace: Altaxo.Calc.RandomAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic static IEnumerable<int> NextInt32Sequence(
this Random rnd,
int minInclusive,
int maxExclusive
)
Parameters
- rnd Random
- The random number generator.
- minInclusive Int32
- Lower bound, inclusive.
- maxExclusive Int32
- Upper bound, exclusive.
Return Value
IEnumerableInt32An infinite sequence of uniformly distributed random integers in the requested range.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
Random. 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
This extension is thread-safe if and only if called on an random number
generator provided by Math.NET Numerics or derived from the RandomSource class.
See Also