gpt4 book ai didi

c# - 命名空间 System.Drawing 中不存在点

转载 作者:太空狗 更新时间:2023-10-29 23:32:27 24 4
gpt4 key购买 nike

我是 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# - 命名空间 System.Drawing 中不存在点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15870333/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com