Opensource IDE

Please support our C# advertiser: Intel Parallel Studio Home
Reply

Join Date: Mar 2005
Posts: 263
Reputation: Toulinwoek is an unknown quantity at this point 
Solved Threads: 2
Toulinwoek's Avatar
Toulinwoek Toulinwoek is offline Offline
Posting Whiz in Training

Opensource IDE

 
0
  #1
Apr 7th, 2005
Does anyone know anything about an opensource C# IDE called SharpDevelop? I'm looking for something to learn with, and don't want to get something that's not going to do me much good. Thanks for any info!
Reply With Quote Quick reply to this message  
Join Date: Apr 2004
Posts: 573
Reputation: Dark_Omen is an unknown quantity at this point 
Solved Threads: 5
Dark_Omen Dark_Omen is offline Offline
Posting Pro

Re: Opensource IDE

 
0
  #2
Apr 8th, 2005
#develop is good. I think it is just an ide wrapped around the .net framwork (or something like that). It is good, mainly because it is free.
Reply With Quote Quick reply to this message  
Join Date: Mar 2005
Posts: 263
Reputation: Toulinwoek is an unknown quantity at this point 
Solved Threads: 2
Toulinwoek's Avatar
Toulinwoek Toulinwoek is offline Offline
Posting Whiz in Training

Re: Opensource IDE

 
0
  #3
Apr 9th, 2005
Originally Posted by Dark_Omen
It is good, mainly because it is free.
Yep, that's what I like about it. But I'd hate to get myself up to decent speed on it, then get Visual Studio and find I have to re-learn. Right now I just don't have the loose change lying around that Microsoft wants to VS 2005. Sheesh!
Reply With Quote Quick reply to this message  
Join Date: Feb 2005
Posts: 181
Reputation: Paul.Esson is an unknown quantity at this point 
Solved Threads: 10
Paul.Esson's Avatar
Paul.Esson Paul.Esson is offline Offline
Junior Poster

Re: Opensource IDE

 
0
  #4
Apr 10th, 2005
I havent really had much success with IDE's, I find them really unintutitive. I seem to find myself using a texteditor (usuly nano or gedit). They are exceedingly useful for building GUI's but when im not doing that I cant really see any point to using one, since they are spost to make life easy, and they don't seem to.
Reply With Quote Quick reply to this message  
Join Date: Jul 2003
Posts: 117
Reputation: Iron_Cross is an unknown quantity at this point 
Solved Threads: 2
Iron_Cross's Avatar
Iron_Cross Iron_Cross is offline Offline
Junior Poster

Re: Opensource IDE

 
0
  #5
Apr 12th, 2005
I've used #Develop and VS.NET 2003. And there is a world of difference! #Develop is good if you're doing simple tasks, and not in a work environment. If you are at all concerned with scheduels and the like, use VS.NET. I know it's not free or open source, but it's a great product.
elitehackers.info
Today's Penny-Arcade!
Pain is weakness leaving the body!
Reply With Quote Quick reply to this message  
Join Date: Apr 2004
Posts: 573
Reputation: Dark_Omen is an unknown quantity at this point 
Solved Threads: 5
Dark_Omen Dark_Omen is offline Offline
Posting Pro

Re: Opensource IDE

 
0
  #6
Apr 12th, 2005
Yeah, I have used both too, and VS.Net makes organizing and other stuff easier. It is costly though. The only thing bad about jsut writing a file in notepad or something is it doesn't come with a compiler and a debugger.
Reply With Quote Quick reply to this message  
Join Date: Mar 2005
Posts: 263
Reputation: Toulinwoek is an unknown quantity at this point 
Solved Threads: 2
Toulinwoek's Avatar
Toulinwoek Toulinwoek is offline Offline
Posting Whiz in Training

Re: Opensource IDE

 
0
  #7
Apr 12th, 2005
Originally Posted by Iron_Cross
I've used #Develop and VS.NET 2003. And there is a world of difference! #Develop is good if you're doing simple tasks, and not in a work environment. If you are at all concerned with scheduels and the like, use VS.NET. I know it's not free or open source, but it's a great product.

Yeah, I don't have any worries about scheduling; my goal (after learning of course) is to mainly write and sell programs more or less independently. I have a lot of what I think are good ideas, I just need to sharpen (no pun intended) my tools.
As I said, my main concern is that #develop is so different from VS that I'll be locking myself in and will have to relearn if I decide to get VS. I have no doubt that VS is a great product, and I really, reeally want it, but I really really can't justify it's cost at this stage.
Reply With Quote Quick reply to this message  
Join Date: Jul 2003
Posts: 117
Reputation: Iron_Cross is an unknown quantity at this point 
Solved Threads: 2
Iron_Cross's Avatar
Iron_Cross Iron_Cross is offline Offline
Junior Poster

Re: Opensource IDE

 
0
  #8
Apr 13th, 2005
Then you're probably going to want VS.NET. It really makes many aspects of programming much less hasslesome, especially when wanting to build quality, professional software. But yes, it is very pricy. You might be able to grab a copy on a student license, depending on how old you are and stuff....
Plus, if you wait until 2005 comes out, you could probably get 2003 for a good deal. And I use 2003, and it's an awesome IDE.
elitehackers.info
Today's Penny-Arcade!
Pain is weakness leaving the body!
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 7
Reputation: SethWebster is an unknown quantity at this point 
Solved Threads: 0
SethWebster SethWebster is offline Offline
Newbie Poster

Re: Opensource IDE

 
0
  #9
Apr 14th, 2005
VS.NET IDE is very intuitive. There are some glitches but with as robust as it is, MS would have been hard pressed not to screw up somewhere. There is no IDE as comprehensive. You COULD use #develop for learning purposes, but as stated above, not for anything on a schedule.

Consider that #develop is in an open source alpha/beta stage and will UE on you. The #develop team has implemented some things that are definitely missing from VS.NET ide like a few code completion macros:

prop int counter (hit Alt+Q here)

turns into:
  1. private int counter;
  2. public int Counter
  3. {
  4. get
  5. {
  6. return this.counter;
  7. }
  8. set
  9. {
  10. this.counter=value;
  11. }
  12. }

It's a nice feature to have, but can easily be duplicated in minutes from within the VS.NET Macros IDE (and it runs a lot faster too).

I think that #develop is an awesome idea, and once it has been extensively bug tested and developed, that it may give the community at large a viable alternative to using a Microsoft product. However, with VS.NET 2005 about to break, #develop may be a little to little a little too late.

Seth Webster
Reply With Quote Quick reply to this message  
Join Date: Mar 2005
Posts: 263
Reputation: Toulinwoek is an unknown quantity at this point 
Solved Threads: 2
Toulinwoek's Avatar
Toulinwoek Toulinwoek is offline Offline
Posting Whiz in Training

Re: Opensource IDE

 
0
  #10
Apr 14th, 2005
Originally Posted by SethWebster
I think that #develop is an awesome idea, and once it has been extensively bug tested and developed, that it may give the community at large a viable alternative to using a Microsoft product. However, with VS.NET 2005 about to break, #develop may be a little to little a little too late.
Seth Webster
Yeah, that's kind of my worry. I guess I need to take a look at VS.NET 2003. As long as the controls have the more modern look, I think I'll be satisfied. Then again, with the release date of 2005 being pushed back, maybe I'll have time to save a some pennies, scrounge up a bunch of aluminum cans and sell off some old clothes and buy it when it comes out. That would be HARD, though. I'd have to be real sure I'll be in this programming thing for the long haul before dropping that kind of dough!

Any thoughts about any of the Express products? They're still in beta, but I think MS is touting them as great tools, minus some of the serious power-developer functions, that might present a better learning environment.
Reply With Quote Quick reply to this message  
Reply

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


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC