0

我收到了这个 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
4

2 回答 2

2

这不是 vb.net 吗?

它应该是:

Integer.Parse(txtqfire.Text)

您还可以使用:

Int32.Parse(txtqfire.Text)
于 2013-10-03T08:08:39.680 回答
1

VB.NET 中没有这样的方法(与 c# 不同)。

VB.NET 转换为:

Integer.Parse(txtqfire.Text)
于 2013-10-03T08:09:38.677 回答