Click to See Complete Forum and Search --> : random number generator


sheerin
February 14th, 2005, 01:18 AM
Im doing an examination question bank. I would like the bank/system to randomly
pick questions for the exam paper. Anyone that has knowledge with random number generation, please help me out. Thanx

Alsvha
February 14th, 2005, 03:38 AM
Well - for starters.
There are both the System.Random and the System.Security.Cryptography.RandomNumberGenerator namespaces which can provide you with various random functionality.

The first mentioned is the easier and less accurate one if I remember right. For what you would do - I'd recommend using that one first. So take a look at the functionality of System.Random - it is relative easy to use.