10 references to LocalRandom
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Random.cs (10)
387int result = LocalRandom.Next(); 396int result = LocalRandom.Next(maxValue); 408int result = LocalRandom.Next(minValue, maxValue); 415long result = LocalRandom.NextInt64(); 424long result = LocalRandom.NextInt64(maxValue); 436long result = LocalRandom.NextInt64(minValue, maxValue); 443float result = LocalRandom.NextSingle(); 450double result = LocalRandom.NextDouble(); 462LocalRandom.NextBytes(buffer); 465public override void NextBytes(Span<byte> buffer) => LocalRandom.NextBytes(buffer);