Пример #1
0
 /// <summary>
 /// Returns a random number greater than or equal to 0 and less than the maxValue
 /// </summary>
 /// <param name="maxValue">The non-inclusive maximum short value for the random number</param>
 /// <returns>A random short</returns>
 public static Int16 GetRandom(this Int16 maxValue)
 {
     return(maxValue.GetRandom(0));
 }