using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
           MessageBox.Show("Welcome to c# Programming!");
        }
    }
}
在上面的程序编译时,出现如下错误:
错误 1命名空间“System”中不存在类型或命名空间名称“Windows”(是缺少程序集引用吗?)
请问高手这是怎么回事?