Forgot your password?
typodupeerror

Comment Re:Don't abuse Using, try doxygen (Score 1) 82

There are two forms of using.
  • 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...

Slashdot Top Deals

Never buy what you do not want because it is cheap; it will be dear to you. -- Thomas Jefferson

Working...