【发布时间】:2013-10-03 08:05:38
【问题描述】:
我收到了这个 Visual Basic 2010 错误:重载解析失败,因为没有可访问的 int 接受数字参数。 第 2 行“int”处出错
Private Sub cmdadd_Click(sender As System.Object, e As System.EventArgs) Handles cmdadd.Click
Dim i As Integer = Int.Parse(txtqfire.Text)
i += 1
txtqfire.Text = i.ToString()
End Sub
【问题讨论】: