[求助]关于随机数的问题
我在做随机数的时候想要抽取多个数字比如13个,但做出来后只能抽取一个,代码如下:Dim a As New Random '定义一个随机数类
Dim tmp As Int32
Dim h As New Hashtable
While h.Count < 14
tmp = a.Next(1, 54)
If Not h.Contains(tmp) Then
h.Add(tmp, tmp)
Label1.Text = tmp
End If
End While
这个代码该怎么改才对