Random.Random C# (CSharp) Méthode

Random() public méthode

public Random ( uint seed )
seed uint
    public Random(uint seed)
    {
        _val = seed;
    }

Usage Example

Exemple #1
0
 private void FindTerraceCounts()
 {
     //skip corners
     for (int i = 1; i < numSubpeaks + 2; i++)
     {
         int usedTerracePoints = Random.Random(0, );
         terraceCount[i, 0] =
     }
 }
All Usage Examples Of Random::Random