Hacker News new | ask | show | jobs
by messe 215 days ago
This loops, if that's what you're asking:

    while (true)
    {
        try
        {
            try { return; }
            finally { throw new Exception(); }
        }
        catch { }
    }