嗨,我是 VB 新手,使用数组时遇到问题。我的代码是这样的。这是类 FindFactorsObject.vb
Public Sub FindFactors()
count = 0
temp = Convert.ToInt32(Math.Sqrt(_x))
For i As Integer = 1 To temp
If _x Mod i = 0 Then
ReDim array(count)
array(count) = i
count += 1
End If
Next
所以我创建了一个数组并存储了结果。现在我想在 Form.vb 中显示我的数组中的每个值,如果可能的话,有人可以教我如何为每个显示的值设置延迟。非常感谢