3 overrides of NextInt64
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Random.Net5CompatImpl.cs (2)
55public override long NextInt64(long minValue, long maxValue) 170public override long NextInt64(long minValue, long maxValue)
src\libraries\System.Private.CoreLib\src\System\Random.Xoshiro256StarStarImpl.cs (1)
127public override long NextInt64(long minValue, long maxValue)
1 reference to NextInt64
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Random.cs (1)
142long result = _impl.NextInt64(minValue, maxValue);