'System.Drawing.Color' 不包含 'FromARgb' 的定义

'System.Drawing.Color' does not contain a definition for 'FromARgb'

我已经添加了 System.Drawing 作为参考,但是这段代码似乎在我声明新颜色的那一行失败了

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Drawing;
using System.Windows.Forms;
using System.IO;


namespace BitmapParser
{
    class Program
    {
        static void Main(string[] args)
        {
            Color a = Color.FromARgb(0, 255, 0);
        }
    }
}

那么这是怎么回事?我查了一下 System.Drawing.Color,它确实有一个 3-int 构造函数 https://msdn.microsoft.com/en-us/library/system.drawing.color.aspx

您试过拼写正确吗?这对我来说很好用:

var clr = System.Drawing.Color.FromArgb(0, 128, 255);