无法返回位图?

时间:2018-10-24 16:38:11

标签: c# import

我是C#的新手。但是,这似乎是一个琐碎的问题,但我找不到答案。

我试图简单地返回一个Bitmap对象(通过接口定义),但是它不能“找到” Bitmap类。我已经导入了适当的命名空间System.Drawing;,但仍然出现相同的错误

Type or namespace reference cannot be found (are you missing an assembly reference?)

这是当前的代码:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;

namespace ConsoleApplication1
{
public interface PlanetInterface
  {
    bool isColonized();
    bool isDestroyed();

    Bitmap getImage();  //Why does Bitmap not 'exist'.



  }
}

非常感谢您的帮助。谢谢。

1 个答案:

答案 0 :(得分:3)

您需要添加对System.Drawing的引用,默认情况下在控制台应用程序中未引用它:

enter image description here