gpt4 book ai didi

c# - 视觉 C# : Cannot use the Convert method in winforms anymore

转载 作者:太空宇宙 更新时间:2023-11-03 19:22:14 25 4
gpt4 key购买 nike

也许我在这里遗漏了一些完全简单的东西,但在我创建的任何新窗口窗体中,我不能再使用 Convert 方法。我很确定我所有的使用指令都在那里,而且我没有使用任何扩展。自从我上次使用它以来,我没有做任何改变 VS 的事情,当时一切正常。

这可能是 VS 2011 Beta 的问题,还是我的一个简单错误?

这是我的代码以及显示的错误:

'System.Windows.Forms.Button' does not contain a definition for 'ToInt32'

and no extension method 'ToInt32' accepting a first argument of type

'System.Windows.Forms.Button' could be found

(are you missing a using directive or an assembly reference?)

代码如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace TempConvert
{
public partial class Form1 : Form
{
int degreesEntered;

public Form1()
{
InitializeComponent();
}

private void Form1_Load(object sender, EventArgs e)
{
}

private void Convert_Click(object sender, EventArgs e)
{
degreesEntered = Convert.ToInt32(Degrees.Text);
}
}
}

最佳答案

我相信问题是你有一个名为 Convert 的按钮,它隐藏了静态类 - 你可以尝试使用完整的命名空间来引用它,或者做一个 int.Parse

System.Convert.ToInt32(Degrees.Text);

关于c# - 视觉 C# : Cannot use the Convert method in winforms anymore,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11388553/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com