○コンソールアプリケーションからフォームを表示する


class Class1
{
	static void Main(string[] args)
	{
		System.Windows.Forms.Application.Run(new System.Windows.Forms.Form());
		System.Windows.Forms.MessageBox.Show("フォーム終了");
	}
}


▲トップページ > Visual BASIC と C#