我是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'.
}
}
非常感谢您的帮助。谢谢。