Esempio n. 1
0
		public SFMT()
		{
			if ( Environment.Is64BitProcess )
				m_Randomizer = new SFMT64( (uint)DateTime.UtcNow.Ticks );
			else
				m_Randomizer = new SFMT32( (uint)DateTime.UtcNow.Ticks );
		}
Esempio n. 2
0
 public SFMT()
 {
     if (Environment.Is64BitProcess)
     {
         m_Randomizer = new SFMT64((uint)DateTime.UtcNow.Ticks);
     }
     else
     {
         m_Randomizer = new SFMT32((uint)DateTime.UtcNow.Ticks);
     }
 }