using System; using System.Runtime.InteropServices; using System.Windows.Forms; namespace MTC_ADB { static class Program { [DllImport("kernel32.dll", SetLastError = true)] static extern bool AllocConsole(); [DllImport("kernel32.dll", SetLastError = true)] static extern bool FreeConsole(); /// /// Punto di ingresso principale dell'applicazione. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new MainForm()); } } }