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

How many Unix hacks does it take to change a light bulb? Let's see, can you use a shell script for that or does it need a C program?

Working...