c# – 命名空间System.Drawing中不存在Point

前端之家收集整理的这篇文章主要介绍了c# – 命名空间System.Drawing中不存在Point前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是C#的新手,并试图从教程中运行一个示例C#程序.

当我尝试运行以下代码时,我收到以下错误

Error 1 The type or namespace name ‘Point’ does not exist in the namespace ‘System.Drawing’ (are you missing an assembly reference?) 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”.它应该工作.

猜你在找的C#相关文章