Random() public méthode

public Random ( uint seed )
seed uint
Exemple #1
0
 private void FindTerraceCounts()
 {
     //skip corners
     for (int i = 1; i < numSubpeaks + 2; i++)
     {
         int usedTerracePoints = Random.Random(0, );
         terraceCount[i, 0] =
     }
 }
Exemple #2
0
 public static BigInteger Random(this Random generator, BigInteger limit)
 {
     return(new BigInteger(generator.Random(limit.Value)));
 }