Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been doing C# for quite a while now (2.5 years) professionally after having dabbled in Java and PHP while in college. Now I really want to improve myself as a developer and want to learn a second language. What would be a good choice and most importantly why; What will learning that language add to my skillset (besides the syntax obviously)?

share|improve this question
Nice question. Have you thought about asking the question switched around to see how the answers will differ. Ask "I want to imporve as a developer, what concepts should I learn and why? Please associate a programming language with the concept." – Guy Coder Sep 16 '12 at 11:19

15 Answers

up vote 20 down vote accepted

I would look at something away from the .Net runtime and probably a dynamic language. Of the eight or nine languages I've used to any degree I think Ruby is probably the most enjoyable to work with so I would recommend that. Having got the hang of it you could probably find it useful with the stuff you know already through IronRuby but go to the original language first.

I agree with the people talking about learning a functional language too- this is next on my list of coding self-improvement tasks. There is plenty of time for both, though - Hunt and Thomas recommend a language a year and I think they certainly have a point.

share|improve this answer
3  
ruby is a fun language. I know C# best and tried ruby about 6 months ago in my spare time. – Ed S. Dec 22 '08 at 8:18

if you're in C# learn F#. Functional programming in familiar .net environment.

share|improve this answer
1  
F# would indeed add an entire new paradigm to your skillset (i.e. Functional Programming). – Ruben Steins Dec 9 '08 at 9:18

Haskell or Lisp. The functional paradigm opens up a whole new slew of possibilities. You probably won't develop in either professionally, but what you learn from the process is widely recognized as beneficial.

share|improve this answer

It depends what skills you want to acquire.

As a good all-round language and a good example of a scripting language, I'd recommend Python, because it has nice, clean syntax and lots of useful features.

If you want to learn more about the machine and lower level stuff, C could be a good one to try, especially as it is quite a small language but you need to understand a lot of concepts quite well in order to use it, so it would be more about increasing your theoretical knowledge instead of just learning some syntax or an API.

I don't know any functional languages (yet :P) but one of those might be good to learn as it's quite a different paradigm to what you would be used to from C#, so it woudl give you a new way to think about programming.

share|improve this answer
1  
python has lots of functional features ;-) – fortran Aug 4 '09 at 14:50

I think F# is a very good complementary language to C# not at least because it is a different way of thinking (functional programming) but you still have the .net libraries to help you so even if the syntax is different the environment is familiar and that will help you a long way

share|improve this answer

Rather than branching out, consider channeling your efforts into the new .Net technologies emerging. I think you'll find that WPF and Silverlight 2 are challenging for even experienced C# developers. If you're a web guy consider getting some practice with MVC and Dynamic.

share|improve this answer

How well do you know each end of a web application system? If you know both and are well-versed in each then this isn't going to be helpful.

  • DB programming skills like T-SQL or PL/SQL may be useful for one approach. Making tables, stored procedures, writing queries, and creating indices are all examples of things to use here.
  • JavaScript/CSS would be the other end of web development where the focus is on the UI and making that look good and work. Silverlight would be another option.
share|improve this answer
Same suggestions I'd have made. I recommend these books: "professional sql server 2005 programming" and "javascript: the good parts" – Frank Schwieterman Aug 20 '09 at 23:20

Ruby or Python or Lua (I'm going to learn the last one).

I mean - a interpreted/scripting language.

share|improve this answer
1  
Ruby is properly Object Oriented, much more so than C#. Which isn't to say don't learn it, but it is absolutely OO and very powerful for it. – glenatron Dec 8 '08 at 12:59
@glenatron: Where Ruby is much more OO than C#?! It's properly OO I agree, but more or even much more - I don't. – abatishchev Sep 16 '12 at 12:36
Everything is an object. C# has whipped a bunch of Ruby ideas over the years ( lambdas, yield, literal object declarations, ASP.Net MVC ) but it hasn't got that far yet so you get nice stuff like MyArray.each do || or properties on values so you could say "ABCDEF".split() rather than having to assign variables. – glenatron Sep 18 '12 at 10:57

I would say Java. If you know a .NET language and Java that qualifies you for 95%+ of the programming jobs out there.

share|improve this answer

C++ in order to better understand memory management and data structures. It'll bring on you .NET code a long way, simply by understanding exactly what happens each time you call some memory-managed code.

share|improve this answer
Not just to understand, but to be able to fall back to C++ from C# where performance requirements necessitate it. – Pavel Minaev Aug 20 '09 at 23:17

Scripting languages like Ruby or Python. Why? They allow you to quickly write scripts to automate certain tasks, unit tests, ...

share|improve this answer

Learn whatever language you have interest in irrespective you are a C# coder... Nothing impossible if you say "Its simple and possible" :-)

share|improve this answer

My suggestion is Python, it's a logical next step.. It's a beautiful language that will allow you to do rapid prototyping very easily.. It's standard library is full of useful tools, and uses very interesting programming concepts/patterns that will help improve your programming skills in other languages also.. Also another bonus point is IronPython, .NET implementation of python that interacts very nicely with Microsoft .NET platform and will also give you ability to interact with your current projects.

share|improve this answer

Python and F#.

Python because IronPython is more mature than IronRuby, therefore better integration with .NET. So you will learn a scripting language without stepping from the .NET VM.

F# because OCaml is such a sweet functionnal language and F# is better. (no more "Error at character 815-820" in your 500 lines module which is a pain each time you see it) I don't know about lisp and haskell, but I don't know if most of the old functionnal language are as polished for developer productivity as F# is.

I just hated the poor compile error in ML and Ocaml frustrating, especially when you learn type inferencing.

share|improve this answer

No-one suggested Boo?

I'd look at that, if I could be bothered. I've been doing c# for 8 years. Years ago I looked at ruby and Python, but Boo is based on .NET, yet is structured like them, so it's quite enjoyable. And very 'meta' based (if that floats your boat).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.