I would like to generate a random number less than 50, but once that number has been generated I would like it so that it cannot be generated again.
Thanks for the help!
feedback
|
|
Please see: Fisher–Yates shuffle:
| |||||||
feedback
|
|
Put the numbers 1-49 in a sortable collection, then sort it in random order; pop each one out of the collection as needed. | |||||||||||||||
feedback
|
|
Seeing as the question was tagged VB/VB.Net... this is a VB implementation of Mitch's answer.
| |||
|
feedback
|