Run a windows form while my console application still running
问题 I'm new at C# programming and i'm lost with a thing that could be simple. Executing a console application, at a moment i need to call a Windows Form that will show statics of the execution but when i call the form1.ShowDialog(); this stop the console runtime. How do i keep my console execution alive while i show a Windows form screen ? class Program { static Form1 form = new Form1(); public static bool run = true; static void Main(string[] args) { work(); } public static void work() { form