Learning C# in Mono - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T21:36:53Z http://stackoverflow.com/feeds/question/92592 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/92592/learning-c-in-mono 6 Learning C# in Mono rkalajian 2008-09-18T13:37:31Z 2008-11-03T13:23:05Z <p>How solid is Mono for C# development on Linux and OS X? I've been thinking about learning C# on the side, and was wondering if learning using Mono would suffice.</p> http://stackoverflow.com/questions/92592/learning-c-in-mono/92604#92604 3 Answer by Rich B for Learning C# in Mono Rich B 2008-09-18T13:39:01Z 2008-09-18T13:39:01Z <p>It should be just fine. It supports C# 3.0 now. I usually try to stick with targeting 2.0 though and it is very stable.</p> <p>Winforms and ASP.NET have both worked fine for me. The only thing to consider is there is currently no support for WPF.</p> http://stackoverflow.com/questions/92592/learning-c-in-mono/92623#92623 0 Answer by Curro for Learning C# in Mono Curro 2008-09-18T13:41:29Z 2008-09-18T13:41:29Z <p>To learn the language, you will be just fine. There are some libraries missing in mono, but that would not prevent you from learning the language. You can find more information at the <a href="http://www.mono-project.com/FAQ:_General" rel="nofollow">Mono Project Page: FAQ</a>.</p> http://stackoverflow.com/questions/92592/learning-c-in-mono/92624#92624 1 Answer by Łukasz Sowa for Learning C# in Mono Łukasz Sowa 2008-09-18T13:41:33Z 2008-09-18T13:41:33Z <p>.NET 2.0 is fully implemented and if you are planning to use only .NET 2.0 it's almost guaranteed that it will work properly (even WinForms) :) Other versions are still under heavy development so you have to check the Mono's website.</p> http://stackoverflow.com/questions/92592/learning-c-in-mono/92625#92625 10 Answer by AriT93 for Learning C# in Mono AriT93 2008-09-18T13:41:43Z 2008-09-18T13:41:43Z <p>I have been using mono for upwards of 2 years now. Work is windows and .Net, home is mono on GNU/Linux. I have been able to run both GUI and ASP.NET apps with no problems from the same SVN repository. The only changes I had to make were in connection strings. ASP.NET works well under mod_mono for apache and xsp2. Some of the .NET 3.5 pieces are not there but definitely works for .NET 2.0 and earlier. </p> <p>Monodevelop is coming along nicely and I believe the debugger is working well too.</p> http://stackoverflow.com/questions/92592/learning-c-in-mono/92635#92635 2 Answer by Adam Lassek for Learning C# in Mono Adam Lassek 2008-09-18T13:42:38Z 2008-09-18T13:42:38Z <p>I can't speak to Mono's OSX support, but it is used for some pretty big projects in Linux, such as <a href="http://banshee-project.org" rel="nofollow">Banshee</a> and <a href="http://f-spot.org/" rel="nofollow">F-Spot</a>. <a href="http://www.monodevelop.com/" rel="nofollow">Monodevelop</a> is a pretty decent IDE available for it.</p> http://stackoverflow.com/questions/92592/learning-c-in-mono/92640#92640 1 Answer by Remko Jansen for Learning C# in Mono Remko Jansen 2008-09-18T13:43:39Z 2008-09-18T13:43:39Z <p>I think it is very viable to learn C# using mono. I don't have hands-on experience with mono but the platform seems very stable and Mono is used in many <a href="http://www.mono-project.com/Software" rel="nofollow">commercial and open source applications</a>.</p> http://stackoverflow.com/questions/92592/learning-c-in-mono/94238#94238 1 Answer by sontek for Learning C# in Mono sontek 2008-09-18T16:36:05Z 2008-09-18T16:36:05Z <p>Mono has just recently announced that it has full support for .NET 3.5 and overall Mono handles the majority of things well. A lot of the work is done by volunteers so you will still hit corner cases that will cause problems but they are very responsive on bugzilla and mailing lists.</p> <p>Another great feature they've just added is the ability to attach to a process running on Linux/Mac from Visual Studio in Windows remotely. This gives you the ability to debug any system specific problems you could be having.</p> http://stackoverflow.com/questions/92592/learning-c-in-mono/123606#123606 3 Answer by kumpera for Learning C# in Mono kumpera 2008-09-23T20:19:54Z 2008-09-23T20:19:54Z <p>Mono is very solid on OSX. The only part of the stack that's lacking is GUI, neither Gtk# or Winforms work as well as on linux.</p>