学习 C# 并遇到障碍。
为什么这里不使用变量“数字”?
public partial class Form1 : Form
{
static string labelText = "";
static string number = "";
public Form1()
{
InitializeComponent();
}
private void serialNumber_TextChanged(object sender, EventArgs e)
{
string number = this.serialNumber.Text;
}
我不断收到警告说“编号”字段已分配但未使用。