using System.Windows.Forms; namespace SkullLabsAuthExample { internal static class Program { [System.STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } }