我是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
答案 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;
答案 2 :(得分:0)