Switching to .NET ?

Reply

Join Date: Sep 2006
Posts: 13
Reputation: webspy is an unknown quantity at this point 
Solved Threads: 0
webspy's Avatar
webspy webspy is offline Offline
Newbie Poster

Switching to .NET ?

 
0
  #1
Sep 30th, 2006
I'm currently programming in C++ at an intermediate level and now moving on to the Win32 API. I know basic Win32 API programming so far and I don't find it too difficult to learn, but my question is: is it worth it to continue learning it while Windows Vista will be released in a short while and the .NET technology becomes more and more popular ? Since C# is similar to C++, should I switch to C# and learn the .NET framework ? Is .NET the future ? Thanks in advance.
Reply With Quote Quick reply to this message  
Join Date: Sep 2006
Posts: 90
Reputation: Inanna is on a distinguished road 
Solved Threads: 6
Inanna's Avatar
Inanna Inanna is offline Offline
Junior Poster in Training

Re: Switching to .NET ?

 
1
  #2
Sep 30th, 2006
is it worth it to continue learning it while Windows Vista will be released in a short while and the .NET technology becomes more and more popular ?
Absolutely! .NET is great and all, but eventually you need to drop down to Win32 to get somethin' done. Remember that .NET is just an extremely sophisticated wrapper around the core API: Win32. If you know both then you'll be productive and godly at the same time, baby!
Since C# is similar to C++, should I switch to C# and learn the .NET framework ?
C# is nothing like C++, but C++/CLI is a dialect of C++ that supports .NET if you want to tackle the framework without switching languages. If you're learning C++ now, stick with it because you'd rather be a good C++ programmer going into C# than a good C# programmer struggling with C++.
Is .NET the future ?
MS sure thinks so.
Reply With Quote Quick reply to this message  
Join Date: Sep 2006
Posts: 13
Reputation: webspy is an unknown quantity at this point 
Solved Threads: 0
webspy's Avatar
webspy webspy is offline Offline
Newbie Poster

Re: Switching to .NET ?

 
0
  #3
Oct 1st, 2006
Isn't .NET something similar with MFC, maybe it's succesor ? I rather make myself a simple Win32 wrapper to make apps faster, than using MFC or .NET. I know .NET has a lot of useful classes, but while I need only a few of them, why not develop them myself ?
Reply With Quote Quick reply to this message  
Join Date: Sep 2006
Posts: 90
Reputation: Inanna is on a distinguished road 
Solved Threads: 6
Inanna's Avatar
Inanna Inanna is offline Offline
Junior Poster in Training

Re: Switching to .NET ?

 
0
  #4
Oct 1st, 2006
Isn't .NET something similar with MFC, maybe it's succesor ?
.NET is somethin' like the nextgen of MFC. It's still supported, fortunately, but MFC is really showing its age.
I rather make myself a simple Win32 wrapper to make apps faster, than using MFC or .NET.
Here's how I see it. In most applications speed is seriously relative. A windows app is almost always I/O bound or network bound. Unless the speed difference is noticeable by clients, there's not really much point in doing it the hard way for the sake of speed. If it does affect clients, there's a good chance that you can optimize in .NET or MFC sufficiently to make them happy.
I know .NET has a lot of useful classes, but while I need only a few of them, why not develop them myself ?
'Cause it's better to stand on the shoulders of giants than to stretch yourself too thin to get to their height. Prewritten classes are already optimized, debugged, and tested by millions of programmers daily. You can't compete with that kind of stability.
Last edited by Inanna; Oct 1st, 2006 at 9:54 am.
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,273
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 543
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Moderator

Re: Switching to .NET ?

 
0
  #5
Oct 12th, 2006
vista will use WinFX (which is like .net)
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Jun 2006
Posts: 7,651
Reputation: ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of 
Solved Threads: 474
Super Moderator
Featured Poster
~s.o.s~'s Avatar
~s.o.s~ ~s.o.s~ is offline Offline
Failure as a human

Re: Switching to .NET ?

 
0
  #6
Oct 14th, 2006
Originally Posted by proliant_fan View Post
vista will use WinFX (which is like .net)
(Disclaimer: Just my 2 cents)

Yeah thats the main problem with these MS guys, they just do whatever makes them $$$$.

Opensource is the future. I dont think anything can beat the C++ / Python combo.
(Python: Scripting, front end, rapid prototying)
(C++: If you feel like optimizing or writing the core modules)

But then again it depends on how you see things, many people regard MS as god and will follow whatever put in front of them, so they just go with the Drag-and-drop-and-live-happily-ever-after thing.

Many people like to take things in their own hands and like to develop and contribute to the community than working on some proprietory format and waiting for the MS guys to further optimize the amount of effort required in dragging and dropping the components. ( its much more challenging making VB than making softwares in VB, i hope you catch the drift )

But still take your own pick and enjoy programming.
Last edited by ~s.o.s~; Oct 14th, 2006 at 6:00 am.
I don't accept change; I don't deserve to live.

Jo Tujhe Jagaaye, Nindein Teri Udaaye Khwaab Hai Sachcha Wahi.
Nindon Mein Jo Aaye Jise To Bhul Jaaye Khawab Woh Sachcha Nahi.
Khwaab Ko Raag De, Nind Ko Aag De
Reply With Quote Quick reply to this message  
Join Date: Nov 2006
Posts: 26
Reputation: NedFrankly is an unknown quantity at this point 
Solved Threads: 1
NedFrankly NedFrankly is offline Offline
Light Poster

Re: Switching to .NET ?

 
0
  #7
Nov 3rd, 2006
Originally Posted by ~s.o.s~ View Post
(Disclaimer: Just my 2 cents)
Yeah thats the main problem with these MS guys, they just do whatever makes them $$$$.

But then again it depends on how you see things, many people regard MS as god and will follow whatever put in front of them, so they just go with the Drag-and-drop-and-live-happily-ever-after thing.

Many people like to take things in their own hands and like to develop and contribute to the community than working on some proprietory format and waiting for the MS guys to further optimize the amount of effort required in dragging and dropping the components. ( its much more challenging making VB than making softwares in VB, i hope you catch the drift )

But still take your own pick and enjoy programming.
Wow. Quite a few slams and assumptions there... I know, your 2 cents. Please tolerate mine as well.

1.
Whatever makes them $$$$.
Hmmm. So you're in this for the love of it? Money's not an issue in your life, at least at this time. Student? Independently wealthy? At 43, I'm doing what I decided I'd do at the age of 15. I started programming then (in Basic on a Wang 2000) and I've done it ever since. I found that I can do what I love for free, which I did for awhile, or I can get paid for it so my family can have a good life and make a contribution to society. You're in it for the money too. You just picked a different tool and path than 'the MS guys'.

2.
So they just go with the Drag-and-drop...
So, if we code for the .net framework, we aren't 'real' programmers. We just drag and drop. In this, you are just flame baiting. Certainly you don't believe that all .net programming is simple and trivial. As far as us thinking MS is 'god', you've missed it again. Many of us 'ended up' on .net projects - there are many more .net positions open than C++ positions, at least in my area (Southeast US). I didn't intend to become a .net programmer, but I like to eat. I took a gig, found that it was actually pretty solid, and kind of marveled at the simplicity with which I could do otherwise irritating, error-prone processes, such as managing threads, garbage collection, and managing DLL's. It's not better than your languages of choice, but to dismiss it as a child's toy is offensive to those of us who make our living coding in it.

3. I don't know quite how to quote this to make my point. Your last paragraph quoted above states the obvious - many people DO like to take things into their own hands and
contribute to the community
.
It's much more challenging making VB than writing software in VB.
. You are talking about two different disciplines - OS or Kernal developers, deep in the guts, system internals, raw register values... as opposed to Application Development (without which, by the way, there would be absolutely no need for your ability to write a VB compiler), which is about using the tools you create to solve the problems customers bring to us. I know that at your level you also provide direct solutions to customers, but your customers are typically much different from mine, and more technical. They tend to speak your language. Mine don't.

If you recognize the difference here, you'll understand that your remarks as to how lazy, untalented, and obsequious that we MS guys are (that's the impression I got, not what you said) are inflamatory and not likely to win friends and influence people. I am a quite accomplished application programmer. I've done kernal work, I've built compilers. I respect what you do. I just don't particulary care to do it. Oversimplifying application development (regardless of platform) to the point of trivializing it is offensive.

Thanks for letting me rant. I know you're just, well, a programmer. We're all proud of what we do. We love it, or we wouldn't do it. We just have to find some tolerance for other disciplines and realize that we're all needed, and that there are brilliant people at every level.

Ned
Last edited by NedFrankly; Nov 3rd, 2006 at 6:56 pm.
Reply With Quote Quick reply to this message  
Join Date: Jun 2006
Posts: 7,651
Reputation: ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of ~s.o.s~ has much to be proud of 
Solved Threads: 474
Super Moderator
Featured Poster
~s.o.s~'s Avatar
~s.o.s~ ~s.o.s~ is offline Offline
Failure as a human

Re: Switching to .NET ?

 
0
  #8
Nov 4th, 2006
Originally Posted by NedFrankly View Post
Please tolerate mine as well.
Yeah no problem, you seem to be a nice guy mister, and I am always in favour of a healthy debate.

Student?
Yes.

And btw even I need money, its so obvious, whenever we talk of something, money is always there. And btw I think you took my personal opinion and what I think as a personal insult. Believe it or not, I am not that kind of a guy who thinks his ego is more than anything else, if you still dont believe me ask the people at C++ forum.

2. So, if we code for the .net framework, we aren't 'real' programmers. We just drag and drop. In this, you are just flame baiting. It's not better than your languages of choice, but to dismiss it as a child's toy is offensive to those of us who make our living coding in it.
Again you took this as personal insult. The things I actually wrote were meant for a student who wanted to know where he should start off. I just wanted to make his start a bit challenging so in the near future he can easily make a transition to rapid prototying ones like .NET. I didnt know my comments would have such widespread impact.

[quote]3. I don't know quite how to quote this to make my point. Your last paragraph quoted above states the obvious - many people DO like to take things into their own hands and . . You are talking about two different disciplines - OS or Kernal developers, deep in the guts, system internals, raw register values... as opposed to Application Development (without which, by the way, there would be absolutely no need for your ability to write a VB compiler), which is about using the tools you create to solve the problems customers bring to us. I know that at your level you also provide direct solutions to customers, but your customers are typically much different from mine, and more technical. They tend to speak your language. Mine don't.

If you recognize the difference here, you'll understand that your remarks as to how lazy, untalented, and obsequious that we MS guys are (that's the impression I got, not what you said) are inflamatory and not likely to win friends and influence people.
I was just telling that core development is much more challenging than application development. I dont mean to offend anyone as such. You have done kernel development as well as quick application development, and even you know which is more challenging and thats exactly the point I was trying to prove.

Oversimplifying application development (regardless of platform) to the point of trivializing it is offensive.
Incorrect. I really high respect for programmers, so obviously I must be having great respect for Application developers. I learn from people and thats what gives me knowledge.

Thanks for letting me rant.
The pleasure is all mine.

We're all proud of what we do. We love it, or we wouldn't do it. We just have to find some tolerance for other disciplines and realize that we're all needed, and that there are brilliant people at every level.

Ned
Amen.

Regards,

~s.o.s~
I don't accept change; I don't deserve to live.

Jo Tujhe Jagaaye, Nindein Teri Udaaye Khwaab Hai Sachcha Wahi.
Nindon Mein Jo Aaye Jise To Bhul Jaaye Khawab Woh Sachcha Nahi.
Khwaab Ko Raag De, Nind Ko Aag De
Reply With Quote Quick reply to this message  
Join Date: Nov 2006
Posts: 26
Reputation: NedFrankly is an unknown quantity at this point 
Solved Threads: 1
NedFrankly NedFrankly is offline Offline
Light Poster

Re: Switching to .NET ?

 
0
  #9
Nov 4th, 2006
Thanks for your response, SOS. Good debate, more common ground than appeared evident at first!

I guess the only thing that still bothers me is the concept that systems development is more challenging that application development. It's different parts of the same horse, but I can certainly trade stories of complexity and sheer technical prowess over an impossible problem with the best Sys Prog. Again, not better, just different. Complex system architecture, integration with unknown or legacy systems without clear definition or control over interfaces, data-mining poorly designed databases... All of this may seem to require less skill than you possess. I did not 'step down' from the challenges of low level programming. Indeed, I feel that my experiences at every tier allow me to bring formidable capability to my applications team. Sometimes even Sys Progs make our jobs difficult by not considering what the implications of technical decisions made at the OS or compiler level may have on our ability to effectively build applications on that framework.

I do want you to understand that telling new programmers that applications development is not challenging is a slanted view, based upon your hard won knowledge of systems programming. To those of us who prefer applications development, Systems programming is not much fun at all. Again, not better, not worse, just different. Good thing such diversity exists among programmers, right? I do a better job at my craft when you do a good job at yours, and hopefully my creative use of your tools and products challenge you to make even stronger and more capable tools and systems.

I do see that you're a responsible guy, I appreciate your recognizing that I'm just looking for healthy debate (arguments are fun, fights are not ), and I'm glad to be part of the community with you. Thanks again!

Ned
Reply With Quote Quick reply to this message  
Join Date: May 2006
Posts: 3,127
Reputation: WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of WaltP has much to be proud of 
Solved Threads: 283
Moderator
WaltP's Avatar
WaltP WaltP is offline Offline
Posting Sensei

Re: Switching to .NET ?

 
0
  #10
Nov 4th, 2006
For a while there, I thought this was going to go the way of the bunsen burner when a statement is twisted to illogical extremes
Originally Posted by NedFrankly View Post
Originally Posted by ~s.o.s~ View Post
Yeah thats the main problem with these MS guys, they just do whatever makes them $$$$.
1. Hmmm. So you're in this for the love of it? Money's not an issue in your life, at least at this time. Student? Independently wealthy?
I almost jumped into the fire. Glad I waited...

Originally Posted by NedFrankly View Post
I guess the only thing that still bothers me is the concept that systems development is more challenging that application development. It's different parts of the same horse, but I can certainly trade stories of complexity and sheer technical prowess over an impossible problem with the best Sys Prog. Again, not better, just different.
Very true. One has to be careful when compareing something that's relatively unknown in their universe to something they know well. I'm a software engineer with a lot of applications background but not in what's commonly known as Application Programming. I've stayed away from AP for the most part because of my perceptions (right or wrong) of that particular sub-field.


Originally Posted by NedFrankly View Post
I do want you to understand that telling new programmers that applications development is not challenging is a slanted view, based upon your hard won knowledge of systems programming.
Extremely good point. It's like choosing the West Coast or the Midwest. What do you like better, earthquakes or tornados?


Originally Posted by NedFrankly View Post
...and I'm glad to be part of the community with you.
As am I. But he still calls me MR. :mrgreen:
Last edited by WaltP; Nov 4th, 2006 at 8:32 pm.
The 3 Laws of the Procrastination Society:
1) Never do today that which can be put off until tomorrow
2) Tomorrow never comes
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Other Threads in the IT Professionals' Lounge Forum


Views: 5005 | Replies: 16
Thread Tools Search this Thread



Tag cloud for IT Professionals' Lounge
About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC