Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近安装了 Visual Studio 2010,当我写
MessageBox.show("hello ");
它说显示在 system.windows.form.Message-box 类型中不存在。
C# 是区分大小写的语言。所以“秀”和“秀”是不一样的。 如果没有 System.Windows.Forms 可能需要添加 using 语句,也 可以完全输入。 如果没有引用 dll,则它在 System.Windows.Forms.dll 中 MessageBox.Show("hello "); using System.Windows.Forms; System.Windows.Forms.MessageBox.Show("hello ");
MessageBox.Show("hello ");
using System.Windows.Forms;
System.Windows.Forms.MessageBox.Show("hello ");