10 references to LocalRandom
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Random.cs (10)
488int result = LocalRandom.Next(); 497int result = LocalRandom.Next(maxValue); 509int result = LocalRandom.Next(minValue, maxValue); 516long result = LocalRandom.NextInt64(); 525long result = LocalRandom.NextInt64(maxValue); 537long result = LocalRandom.NextInt64(minValue, maxValue); 544float result = LocalRandom.NextSingle(); 551double result = LocalRandom.NextDouble(); 563LocalRandom.NextBytes(buffer); 566public override void NextBytes(Span<byte> buffer) => LocalRandom.NextBytes(buffer);