Example #1
0
 /// <summary>
 /// Returns a random positive integer between the specified inclusive start
 /// value and the exclusive end value.
 /// </summary>
 public int GetRandomRange(long x, long y, long z, int start, int end, long modifier)
 {
     return(AlgorithmUtility.GetRandomRange(this.Seed, x, y, z, start, end, modifier));
 }