Exemplo n.º 1
0
 public Random(UInt32 seed)
     : this(EngineObject.AllocateRandomStateObject(seed))
 {
 }
Exemplo n.º 2
0
 public Random(UInt32[] init_key)
     : this(EngineObject.AllocateRandomStateObject(init_key))
 {
 }
Exemplo n.º 3
0
 public Random()
     : this(EngineObject.AllocateRandomStateObject((uint)Environment.TickCount))
 {
 }