3

大家好,如何用 C# 编写这个 VB 源代码

Dim codes As New System.Windows.Forms.Binding("text", Me.bindingSource1, "ATMCode", True)

我试过写

int codes = new Binding("text", this.bindingSource1, "ATMCode", True);

但VS说错误不能隐式转换类型'System.Windows.Forms.Binding'到'int'

4

1 回答 1

5
var codes = new Binding("text", this.bindingSource1, "ATMCode", true);

上面代码的问题在于它是一个绑定而不是一个 Int。

就像罗伯特说你也可以把它写成......

Binding codes = new Binding("text", this.bindingSource1, "ATMCode", true);

如果您来自 VB,这可能不会那么令人困惑。

于 2013-06-25T21:25:50.417 回答