FastRandom NextInt Method | GeneticSharp |
Generates a random int over the range 0 to int.MaxValue, inclusive.
This method differs from Next() only in that the range is 0 to int.MaxValue
and not 0 to int.MaxValue-1.
The slight difference in range means this method is slightly faster than Next()
but is not functionally equivalent to System.Random.Next().
Namespace: SharpNeatLib.MathsAssembly: GeneticSharp.Domain (in GeneticSharp.Domain.dll) Version: 1.0.5010.36434
Syntax
Return Value
Type: Int32[Missing <returns> documentation for "M:SharpNeatLib.Maths.FastRandom.NextInt"]
See Also