Cosmos/XSharp/source/XSharp.Test/Program.cs
kudzu_cp 389e522236
2012-07-12 14:09:28 +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());
}
}
}