1 override of Sample
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Random.cs (1)
467protected override double Sample() => throw new NotSupportedException();
4 references to Sample
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Random.Net5CompatImpl.cs (4)
140return (int)(_parent.Sample() * maxValue); 148(int)(_parent.Sample() * range) + minValue : 204return _parent.Sample(); 212float f = (float)_parent.Sample();