0

我最近安装了 Visual Studio 2010,当我写

MessageBox.show("hello ");

它说显示在 system.windows.form.Message-box 类型中不存在。

4

1 回答 1

2

C# 是区分大小写的语言。所以“秀”和“秀”是不一样的。 如果没有 System.Windows.Forms 可能需要添加 using 语句,也 可以完全输入。 如果没有引用 dll,则它在 System.Windows.Forms.dll 中
MessageBox.Show("hello ");

using System.Windows.Forms;

System.Windows.Forms.MessageBox.Show("hello ");

于 2013-11-09T20:26:40.143 回答