我刚开始学习C# 我使用Visual Studio 我选择了“Windows Forms App(.NET Framework)。” 我尝试打开一个消息框,但它给了我 CS1002错误。
这是我的代码:
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 WindowsFormsApp6
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void vbToolStripMenuItem_Click(object sender, EventArgs e)
{
MessageBox.Show("test")
}
}
}
答案 0 :(得分:0)
CS1002是一个关于预期分号的完全解释性错误消息。你的行尾没有一个。
private void vbToolStripMenuItem_Click(object sender, EventArgs e)
{
MessageBox.Show("test"); // < Semicolon at the end of each line
}
C#中的每一行,它不是一个连续/多行语句,需要一个分号才能终止。