Skip to content

Instantly share code, notes, and snippets.

@acid-chicken
Created April 8, 2017 04:10
Show Gist options
  • Save acid-chicken/63c8bfa5b4455f15ed32d912629bd98d to your computer and use it in GitHub Desktop.
Save acid-chicken/63c8bfa5b4455f15ed32d912629bd98d to your computer and use it in GitHub Desktop.
using System;
using System.Windows.Forms;
namespace ImageLoad
{
static class Program
{
/// <summary>
/// アプリケーションのメイン エントリ ポイントです。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment