FastRandom.NextInt Method

GeneticSharp

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.Maths
Assembly: GeneticSharp.Domain (in GeneticSharp.Domain.dll) Version: 1.0.5010.36434

Syntax

public int NextInt()
public int NextInt()

Return Value

Type: OnlineInt32

[Missing <returns> documentation for "M:SharpNeatLib.Maths.FastRandom.NextInt"]

See Also