C#矩形对象

时间:2016-05-10 16:08:03

标签: c#

我是C#的新手,我遇到了这个问题,我正在尝试使用这种语法在C#中创建一个Rectangle对象

static void Main(string[] args)
    {
        Rectangle myRectangle = new Rectangle(20, 20, 250, 200);
    }

但它给了我错误

Severity    Code    Description Project File    Line    Suppression State
Error   CS0246  The type or namespace name 'Rectangle' could not be found
(are you missing a using directive or an assembly reference?)    
ConsoleApplication15    

3 个答案:

答案 0 :(得分:0)

System.Drawing是矩形所需的命名空间。 msdn

您需要添加程序集引用以在system.drawing命名空间中使用stuff。
Here is how you add a ref
Here ishow to draw a rectangle.

答案 1 :(得分:0)

您需要导入任何Rectangle所需的命名空间。

将相应的行放在文件的顶部。

using System.Drawing;
using System.Windows.Shapes;

MSDN System.Drawing.Rectangle

MSDN System.Windows.Shapes.Rectangle

答案 2 :(得分:0)

如果您使用Visual Studio并且它不直接工作

添加项目>添加引用... (从底部开始)

https://puu.sh/oMXmx/10e6c9e66e.png