我正在运行 VB.NET 程序并出现错误
“索引超出范围。必须为非负数且小于集合的大小。参数名称:索引”
我的代码如下所示。
If Status.InvokeRequired Then
Try
Status.Invoke(New delegateoneArg(AddressOf onChangeEvent), ws)
Catch ex As DivideByZeroException
MessageBox.Show(ex.Message)
End Try
Else
onChangeEvent(ws)
End If
我有错误... Status.Invoke(New delegateoneArg(AddressOf onChangeEvent), ws)