Cosmos/XSharp/source/XSharp.Test2/XSharp.Test/Program.cs
kudzu_cp 0248844aac
2012-07-12 14:08:37 +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());
}
}
}