コード例 #1
0
 public Random(UInt32 seed)
     : this(EngineObject.AllocateRandomStateObject(seed))
 {
 }
コード例 #2
0
 public Random(UInt32[] init_key)
     : this(EngineObject.AllocateRandomStateObject(init_key))
 {
 }
コード例 #3
0
 public Random()
     : this(EngineObject.AllocateRandomStateObject((uint)Environment.TickCount))
 {
 }