Technology

C#: Silly syntax hint

I found myself wanting to make sure a couple objects that spport IDisposable were cleaned up. I’d written

    using (DurationLogger log = new DurationLogger(s_log, "Writing CSV file"))
    {
        using (FileStream fs = File.OpenWrite("temp.csv"))
        {
             // ...
        {
    }

A simple transformation makes it much more readable:

    using (DurationLogger log = new DurationLogger(s_log, "Writing CSV file"))
    using (FileStream fs = File.OpenWrite("temp.csv"))
    {
         // ...
    }

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.