csharp_pain/ColorChooser/Program.cs
2014-06-26 17:13:46 +02:00

19 lines
No EOL
412 B
C#

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace ColorChooser
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.Run(new Form1());
}
}
}