本文介绍了VBNET超载,因为没有访问'诠释'接受数字参数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我收到此Visual Basic 2010错误:重载决策失败,因为没有可访问INT接受一些参数。
错误在2号线'诠释'
私人小组cmdadd_Click(发件人为System.Object的,电子作为System.EventArgs)把手cmdadd.Click
昏暗我为整数= Int.Parse(txtqfire.Text)
I + = 1
txtqfire.Text = i.ToString()
结束小组
解决方案
这是vb.net不是吗?
它应该是:
Integer.Parse(txtqfire.Text)
您也可以使用:
Int32.Parse(txtqfire.Text)
I'm getting this visual basic 2010 error : Overload resolution failed because no accessible int accepts number arguments.Error at line2 '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
解决方案
This is vb.net isn't it?
It should be:
Integer.Parse(txtqfire.Text)
You can also use:
Int32.Parse(txtqfire.Text)
这篇关于VBNET超载,因为没有访问'诠释'接受数字参数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!