C#C
C#14mo ago
axo

code builds but hangs while running

code: https://paste.pythondiscord.com/KTVQ

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();
    }
}
Was this page helpful?