Skip to content

Instantly share code, notes, and snippets.

@why-jay
Created December 10, 2014 11:02
Show Gist options
  • Save why-jay/7ffccb879f07642f324f to your computer and use it in GitHub Desktop.
Save why-jay/7ffccb879f07642f324f to your computer and use it in GitHub Desktop.
Using in C#
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