Skip to content

Instantly share code, notes, and snippets.

@milk19873
Created October 8, 2016 07:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save milk19873/5f6b6520dd1a13c2f11060c26b6b94f2 to your computer and use it in GitHub Desktop.
Save milk19873/5f6b6520dd1a13c2f11060c26b6b94f2 to your computer and use it in GitHub Desktop.
第5回プログラミング講座-Program.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace HelloWorld
{
static class Program
{
/// <summary>
/// アプリケーションのメイン エントリ ポイントです。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment