Printable View
how do i generante a random number. Can I get an example. thanks.
Use the System.Random class: Random rnd = new Random(); double rndValue = rnd.NextDouble();
thanks!