Files
ChanSort/ChanSort.Ui/Program.cs

23 lines
422 B
C#
Raw Normal View History

2013-03-31 14:09:38 +02:00
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);
}
}
}