csharp_pain/ColorChooser/Program.cs

19 lines
412 B
C#
Raw Normal View History

2014-06-26 15:13:46 +00:00
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());
}
}
}