You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
static memberRandom:minValue :int * maxValue : int * seed : int -> IEnumerable<int>
Parameters
minValue
Type: System.Int32 The inclusive lower bound of the random number returned.
maxValue
Type: System.Int32 The exclusive upper bound of the random number returned. maxValue must be greater than or equal to minValue.
seed
Type: System.Int32 A number used to calculate a starting value for the pseudo-random number sequence. If a negative number is specified, the absolute value of the number is used.