Created
December 10, 2014 11:02
-
-
Save why-jay/7ffccb879f07642f324f to your computer and use it in GitHub Desktop.
Using in C#
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo : IDisposable { | |
// blah | |
} | |
// a couple thousand lines later... | |
using(Foo f = new Foo()) { | |
// blah | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment