Files
ChanSort/ChanSort.Ui/Program.cs
2013-03-31 14:09:38 +02:00

23 lines
422 B
C#

using System;
using System.Windows.Forms;
namespace ChanSort.Ui
{
static class Program
{
internal static bool ChangeLanguage;
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
do
{
ChangeLanguage = false;
Application.Run(new MainForm());
} while (ChangeLanguage);
}
}
}