Hi,
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!
|
1
|
|||||||
|
|
|
Please see: Fisher–Yates shuffle:
|
||||||
|
|
|
Put the numbers 1-49 in a sortable collection, then sort it in random order; pop each one out of the collection as needed. |
||||||||||||||
|
|
|
Seeing as the question was tagged VB/VB.Net... this is a VB implementation of Mitch's answer.
|
||
|
|