Skip to content

Instantly share code, notes, and snippets.

@sheepcloud
Created May 15, 2012 04:58
Show Gist options
  • Save sheepcloud/2699236 to your computer and use it in GitHub Desktop.
Save sheepcloud/2699236 to your computer and use it in GitHub Desktop.
貼り付けテスト
using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
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