I want to create a random number generator in VB.NET But from my own given list of numbers
Like Chose random numbers fro
This is how you get a random natural number in the interval of [0, n - 1]:
CInt(Rnd() * n)
Let's suppose you have a List of n elements. This is how you get a random element from it:
List
n
MyList(CInt(Rnd() * n))