Cosmos/source2/Tests/XSharp.Test/Program.cs
kudzu_cp ae6f596384
2012-07-12 13:51:39 +00:00

15 lines
355 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace XSharp.Test {
static class Program {
[STAThread]
static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
}
}