1
Answer

True Random Numbers?

Does anyone know how to create "true" random numbers? What I mean is that when I use Random(), I get the same sequence after a while. Random objNum = new Random(); objNum.Next(0, 9) this returns the same sequence of numbers after a very short while. I need a way to make it completely random.
Answers (1)