可以的
在解决方案上右键,添加引用,找到system.windows.form,添加进去就可以使用了
比如,下面这个控制台程序就能弹出一个对话框
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Windows.Forms;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
MessageBox.Show("hello,world");
}
}
}
控制台应用程序用于调试,没有包含图型库。所以没有.