SharpCAT/SharpCATForms/Program.cs

20 lines
497 B
C#

using System;
using System.Windows.Forms;
namespace SharpCATForms
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
private static void Main()
{
//SharpCAT sharpCAT = new SharpCAT();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}