哪里存储有关控制台应用程序中的点的信息?

时间:2014-04-14 08:33:36

标签: c#

我需要创建一个存储四个点的结构。我想创建一个Point变量,但看起来我无法在控制台应用程序中使用System.Drawing。我该怎么用?

1 个答案:

答案 0 :(得分:2)

您应该添加对System.Drawing.dll的引用,然后添加using System.Drawing;

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

namespace ConsoleApplication5
{
    class Program
    {
        static void Main(string[] args)
        {
          Point point =  new Point();
        }

    }
}

enter image description here