点在命名空间System.Drawing中不存在
本文关键字:不存在 Drawing System 命名空间 | 更新日期: 2023-09-27 18:07:52
我是一个c#新手,试图从教程中运行一个示例c#程序。
当我尝试运行下面的代码时,我得到以下错误:
错误1类型或命名空间名称"Point"在命名空间"System"中不存在。绘图(您是否缺少汇编参考?)C:'Users'Documents'Visual Studio 2012'Projects'HelloWorld'HelloWorld'Class1.cs 20 28 HelloWorld
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Nullable<bool> b = false;
if (b.HasValue) Console.WriteLine("b is {0}", b.Value);
else Console.WriteLine("b is not set");
System.Drawing.Point p = new System.Drawing.Point(20, 30);
Console.WriteLine(b);
Console.WriteLine("Hello World");
Console.WriteLine("Press any key to exit");
Console.ReadKey();
}
}
}
在解决方案资源管理器中右键单击参考,单击添加参考,单击。net选项卡,滚动到System.Drawing
。