I'm adapting the coding style guide from this source: http://www.csharpfriends.com/articles/getarticle.aspx?articleid=336
Under "5.2 Initialization", it recommends the following:
If you initialize a dialog try to use the using statement:
using (OpenFileDialog openFileDialog = new OpenFileDialog()) { }
What are the reasons for this style choice?