I have been trying to figure this out for some time now and can\'t seem to figure out an answer to it. I don\'t see why this would be impossible. I am coding in VB.NET.
You want to use a List
Dim Numbers As New List(Of Integer)
For i As Integer = 0 To 9
Numbers.Add(0)
Next
The idea of creating a bunch of named variables on the fly is not something you are likely to see in any VB.Net program. If you have multiple items, you just store them in a list, array, or some other type of collection.