一个交换两个文本框的值的小.net的C#程序,最后的错误是swap:静态类不能实例化 下面是代码,谢谢大家
prpgram.csamespaceWindowsApplication28{staticclassprogram{///<summary>///应用程序的主入口点。//...
prpgram.cs
amespace WindowsApplication28
{ static class program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
public void Swap(ref string s1, ref string s2)
{
string s3 = s1;
s1 = s2;
s2 = s3;
}
}
}
窗口代码
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text == "" || textBox2.Text == "")
return;
string ss1 = textBox1.Text, ss2 = textBox2.Text;
Swap(ref ss1, ref ss2);
textBox1.Text = ss1; textBox2.Text = ss2;
}
}
} 展开
amespace WindowsApplication28
{ static class program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
public void Swap(ref string s1, ref string s2)
{
string s3 = s1;
s1 = s2;
s2 = s3;
}
}
}
窗口代码
private void button1_Click(object sender, EventArgs e)
{
if (textBox1.Text == "" || textBox2.Text == "")
return;
string ss1 = textBox1.Text, ss2 = textBox2.Text;
Swap(ref ss1, ref ss2);
textBox1.Text = ss1; textBox2.Text = ss2;
}
}
} 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询