when i build it in release, everything works fine. but when i run in release, it just hangs and does nothing, even though all i'm doing is this:
class Program{ // ... <- nothing up here is run static void DisplayHelp() { string help = """ This is a test help screen. What do you think? """.Trim(); Console.WriteLine(help); } static void Main() { DisplayHelp(); }}
class Program{ // ... <- nothing up here is run static void DisplayHelp() { string help = """ This is a test help screen. What do you think? """.Trim(); Console.WriteLine(help); } static void Main() { DisplayHelp(); }}