这C#代码有错吗?
using System;using System.Collections.Generic;
using
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace First
{
public partial class Form1 : Form
{
public Form1()
private void Main(object sender, EventArgs e)
{
string theString;
theString = "欢迎来到C#世界!";
this.textBox1.Text = theString;
}
}
}