Why do I need an IDE?
by Santiago Terrones · in Technical Issues · 11/15/2004 (2:04 pm) · 4 replies
I am new to programming, so bare with me. Why does my compiler need an IDE. I am gonna download the free version of .net, but a worried about this IDE thing. Could someone please explain.
#2
11/15/2004 (2:44 pm)
So, is it basically a GUI. Question, what will I be missing if I download the free version of .net. Will I have a GUI? Or does an IDE put all of your tools in one place.
#3
lab.msdn.microsoft.com/express/visualc/default.aspx
Really if you're new to programming I think the immediate feedback when entering code into an editor will be very worthwhile. Not to mention the integration of the compiler and the project management features to help you get your files together. When you're starting c++ dev work from scratch you need to make things as smooth as possible!
11/15/2004 (3:11 pm)
I think you should pick up at least the Standard edition of Visual Studio if you're leaning towards a Microsoft product. You could also try the new Visual C++ 2005 Express Edition beta, which is free for evalutation right now. It'll apparently be low-cost when released, so I'd expect under $100. lab.msdn.microsoft.com/express/visualc/default.aspx
Really if you're new to programming I think the immediate feedback when entering code into an editor will be very worthwhile. Not to mention the integration of the compiler and the project management features to help you get your files together. When you're starting c++ dev work from scratch you need to make things as smooth as possible!
#4
11/15/2004 (3:46 pm)
Well, I would like to get the full version of .net, but I don't have the $$$. But, is the free version not user friendly, or noob friendly. I might just download the beta, but does anyone have any experience with it.
Torque Owner Gary Roberson
CJW Enterprises
It's not that an IDE is needed, its just make programming easier.
Reason, to develop software, you use several various tooks, a compilier, a linker, a editor, a project mangaer, a resource file generator, etc. An ide merely places all these several tools into one place so that while you're programming, you won't get lost. (Searching your hard drive for the right tool for the right job.)