Example #1
0
 public Distribution(SystemRandom Rand)
 {
     this.Rand = Rand;
 }
 public RandNumberDistribution(int RandomSeed = 0)
 {
     randomSeed = RandomSeed;
     Random = new SystemRandom(randomSeed);
 }