1 override of Sample
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Random.cs (1)
568protected override double Sample() => throw new NotSupportedException();
4 references to Sample
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Random.CompatImpl.cs (4)
152return double.ConvertToIntegerNative<int>(_parent.Sample() * maxValue); 163double.ConvertToIntegerNative<int>(_parent.Sample() * range) + minValue : 219return _parent.Sample(); 227float f = (float)_parent.Sample();