[求助]在控制台下怎样写windows Froms程序
using System;
using System.Windows.Forms;
using System.Drawing;
class MyForm
{
public static void Main()
{
Form form = new Form();
form.Text = "My First Form";
Application.Run(form);
}
}
在控制台下编译后,显示Windows,Drawing在System名称空间下不存在,不知道怎么回事。