Cosmos/source2/Tests/XSharpCompilerTester/Program.cs
kudzu_cp 4d69dcde01 X#
2012-06-16 02:22:39 +00:00

15 lines
364 B
C#

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