Comment Re:Don't abuse Using, try doxygen (Score 1) 82
There are two forms of using.
The point I'm making is to stay away from aliases as much as possible (just check out the header to almost all C# code. You'll see using System; at the front of nearly every file. That's just an alias that does not affect bytecode, but makes the code less clear. Regards...
- The using Directive is a namespace alias (of which I was referring to)
- The using Statement defines a scope at the end of which an object will be disposed (of which you were referring to)
The point I'm making is to stay away from aliases as much as possible (just check out the header to almost all C# code. You'll see using System; at the front of nearly every file. That's just an alias that does not affect bytecode, but makes the code less clear. Regards...