Click here to Skip to main content
15,920,596 members

Survey Results

Are you working with .NET?   [Edit]

Survey period: 21 Jun 2004 to 27 Jun 2004

It's been out for a while now, but are you using it?

OptionVotes% 
Yes98462.16
No, but we are planning to.21313.46
No38624.38



 
GeneralBreak-down of the 60'sh percent Pin
TRiegler15-Aug-04 3:00
TRiegler15-Aug-04 3:00 
GeneralI hate C# Pin
eric feng25-Jun-04 14:20
eric feng25-Jun-04 14:20 
GeneralRe: I hate C# Pin
bneacetp25-Jun-04 16:20
bneacetp25-Jun-04 16:20 
GeneralRe: I hate C# Pin
Ian Darling26-Jun-04 8:11
Ian Darling26-Jun-04 8:11 
GeneralRe: I hate C# Pin
eric feng26-Jun-04 19:41
eric feng26-Jun-04 19:41 
GeneralRe: I hate C# Pin
Ian Darling26-Jun-04 22:32
Ian Darling26-Jun-04 22:32 
GeneralRe: I hate C# Pin
AgeKay2-Jul-04 7:48
AgeKay2-Jul-04 7:48 
GeneralRe: I hate C# Pin
eric feng2-Jul-04 8:10
eric feng2-Jul-04 8:10 
GeneralI hate C# Pin
eric feng25-Jun-04 14:19
eric feng25-Jun-04 14:19 
GeneralAn issue with .net namespaces Pin
Nathan Holt at EMOM23-Jun-04 4:19
Nathan Holt at EMOM23-Jun-04 4:19 
GeneralRe: An issue with .net namespaces Pin
Nemanja Trifunovic23-Jun-04 4:54
Nemanja Trifunovic23-Jun-04 4:54 
GeneralRe: An issue with .net namespaces Pin
Nathan Holt at EMOM23-Jun-04 5:20
Nathan Holt at EMOM23-Jun-04 5:20 
GeneralRe: An issue with .net namespaces Pin
Nemanja Trifunovic23-Jun-04 5:48
Nemanja Trifunovic23-Jun-04 5:48 
GeneralRe: An issue with .net namespaces Pin
Nathan Holt at EMOM23-Jun-04 6:34
Nathan Holt at EMOM23-Jun-04 6:34 
GeneralRe: An issue with .net namespaces Pin
Nemanja Trifunovic24-Jun-04 2:41
Nemanja Trifunovic24-Jun-04 2:41 
GeneralRe: An issue with .net namespaces Pin
Super Lloyd23-Jun-04 10:23
Super Lloyd23-Jun-04 10:23 
GeneralRe: An issue with .net namespaces Pin
Alvaro Mendez24-Jun-04 5:06
Alvaro Mendez24-Jun-04 5:06 
There are two issues involved here.

1. Code readibility
2. Making the compiler happy

Both are needed but the first one is IMHO, much more important. When I code, I prefer to use "string" rather than "std::string" or "System.String" anyday. And of course, the same as when I read/debug someone else's code. I see that as the main objective behind the using directive. So I use it all the time, in both C++ and .NET. If there's a problem, such as a name collision, the compiler will let me know and I'll take care of it. I just prefer to make the compiler work to make me happy rather than me work so the compiler is happy (by avoiding the using directive in the remote chance that there's a name collision).

Now, on the C++ side, I've always added "using namespace std;" at the highest level the compiler has allowed me (with no fuss). If I can stick it inside the precompiled header, great! It's one line of code in one place and I never have to repeat it again -- how liberating! I know it goes against the "norm", but, like I mentioned, I prefer to let the compiler do the work of figuring out if there are naming collisions instead of me worrying about avoiding them in the first place. That's just me. If you look at my programs, you rarely see shtuff like "using std::string;" or "std::blah" anywhere. It keeps the code clean and very readable.

Regards,
Alvaro


Give a man a fish, he owes you one fish. Teach a man to fish, you give up your monopoly on fisheries.
GeneralRe: An issue with .net namespaces Pin
Nemanja Trifunovic24-Jun-04 5:35
Nemanja Trifunovic24-Jun-04 5:35 
GeneralRe: An issue with .net namespaces Pin
Alvaro Mendez24-Jun-04 8:39
Alvaro Mendez24-Jun-04 8:39 
GeneralRe: An issue with .net namespaces Pin
Ian Darling25-Jun-04 12:51
Ian Darling25-Jun-04 12:51 
GeneralI need some idea. Pin
eric feng22-Jun-04 14:44
eric feng22-Jun-04 14:44 
GeneralRe: I need some idea. Pin
Super Lloyd22-Jun-04 16:44
Super Lloyd22-Jun-04 16:44 
GeneralRe: I need some idea. Pin
eric feng23-Jun-04 8:05
eric feng23-Jun-04 8:05 
GeneralRe: I need some idea. Pin
Super Lloyd23-Jun-04 10:19
Super Lloyd23-Jun-04 10:19 
GeneralRe: I need some idea. Pin
eric feng24-Jun-04 6:12
eric feng24-Jun-04 6:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.