using System; using System.Collections.Generic; using System.Windows.Forms; using IntelliProtectorService; using System.Runtime.InteropServices; using System.IO; using System.Reflection; namespace Register { static class Program { /// /// The main entry point for the application. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); if (!IntelliProtector.Init()) throw new Exception("IntelliProtector Failed to Initialize"); //if (!IntelliProtector.Init()) // Application.Run(new Register()); } } }