What should I learn next after VB and C# - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T16:15:35Zhttp://stackoverflow.com/feeds/question/61826http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c12What should I learn next after VB and C#Nathan W2008-09-15T03:26:46Z2009-10-07T19:15:27Z
<p>Hi All,</p>
<p>I am currently learning VB and C# and have been for the last two and a bit years but I would really like to broaden my programming skills a little bit. </p>
<p>I was just wondering what people would recommend learning?<br />
I have looked into ruby a little bit but haven't really dug my teeth into it, I have also looked into F#.</p>
<p>I can't really decide which way I should go.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61827#618279Answer by Orion Edwards for What should I learn next after VB and C#Orion Edwards2008-09-15T03:38:16Z2008-09-15T03:38:16Z<p>You should learn Ruby.</p>
<p>I learnt ruby after learning C# (this was in the early days just after .net 2 was released), and I am a vastly better C# programmer because of it.</p>
<p>I can't speak for F# as I don't know it, but I would think that ruby will give you a reasonable 'beginning' for F#, as it introduces a fair bit of functional programming.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61832#618320Answer by Unkwntech for What should I learn next after VB and C#Unkwntech2008-09-15T03:44:37Z2008-09-15T03:44:37Z<p>I think it depends on where you want to go, if you want to get into web development, then ASP or PHP, depending on your preferred stack. I'm a *nix guy so I gotta' say c++ or anything more portable like Java, Perl ect.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61833#618330Answer by Fernando for What should I learn next after VB and C#Fernando2008-09-15T03:44:56Z2008-09-15T03:44:56Z<p>Well, it depends on what you will do with it. There's no single language that rule on every feature, so it really depends.</p>
<p>If you REALLY want a single language as an answer, I'd say C++. It's tough to learn and to use, but once you know it (and have used it a little), I'll have understood some concepts that will help you learn any other language.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61834#6183411Answer by warren_s for What should I learn next after VB and C#warren_s2008-09-15T03:45:32Z2008-09-15T03:45:32Z<p>Learn a functional language, like Lisp, Scheme, Haskell, Erlang. Otherwise, you're not really doing anything other than learning how to write the same code in a different dialect. </p>
<p>Functional programming requires a shift in how you think about solving problems.</p>
<p>Alternatively, spend more time on using the languages you do know. With 2 years experience, you've barely scratched the surface to be honest.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61836#618366Answer by Corey for What should I learn next after VB and C#Corey2008-09-15T03:48:28Z2008-09-15T03:56:16Z<p>Learn more C# and .Net. The framework is gigangic, and there's no way that you know everything about it.</p>
<p>Also, learn about <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-046JFall-2005/CourseHome/index.htm" rel="nofollow">algorithms</a> and other important computer science topics.</p>
<p>edit: While I'm just now starting to learn it myself, F# seems like a good way to learn functional programming, while being useful to you and while allowing you to leverage your existing knowledge of .Net.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61840#6184023Answer by rob_g for What should I learn next after VB and C#rob_g2008-09-15T03:53:52Z2008-09-15T03:53:52Z<p>If you're already familiar with VB and C#, and you're confident in your knowledge of patterns and things architectural, I'd like to expand on the advice given by warren_s and advise you check out F#. F# is a <strong>useful</strong> functional/OO hybrid language that compiles down to MSIL and runs on the CLR. </p>
<p>The first thing though, is make sure you're familiar with patterns. Read GoF's design patterns and then Martin Fowlers Patterns of Enterprise Application Architecture. Implement some of the patterns that new MS technologies have hidden from your sight, such as lazy loading. </p>
<p>Also read up on the various styles of development. As a MS programmer, you're probably most familiar with data drive development, focussing on DataSets and DataBinding to your UI. Now you have a few years experience, investigate Test and Domain driven development. Get familiar with the nuances of the currently popular techniques and why many people are anti-microsoft, and why microsoft are changing to become more like every one else.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61843#618433Answer by Brian R. Bondy for What should I learn next after VB and C#Brian R. Bondy2008-09-15T03:59:10Z2008-09-15T03:59:10Z<p>See <a href="http://beta.stackoverflow.com/questions/36580/something-other-than-c#36599" rel="nofollow">my previous answer</a> to this same question.</p>
<p>Why not try to specialize your experience instead of simply re-learning the same things with a new syntax. </p>
<p>Examples:</p>
<ul>
<li>OpenGL or Direct X</li>
<li>Network programming in general</li>
<li>Learning protocols such as HTTP, FTP, SMTP, …</li>
<li>Neural nets / AI</li>
<li>More with XML XSLT / XPath / …</li>
<li>Image processing / Video processing</li>
</ul>
<p>If you’d really like to learn a new language I’d recommend to learn a functional programming language such as Erlang, Haskell, ML, F#, Scheme, LISP. You will learn a lot from the different point of view. </p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61849#618490Answer by Nathan W for What should I learn next after VB and C#Nathan W2008-09-15T04:05:36Z2008-09-15T04:05:36Z<p>Thanks all,</p>
<p>Everyone one is so fast to answer its great. I think I will have a look into doing some work with F#. Since GIS/Asset Management is my main field of work and its very function based it would properly be handy knowing some form of functional language.</p>
<p>Thanks Rob Gray for the recommended readings, I'll have a look into those.</p>
<p>Thanks all again for you quick responses.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61851#618510Answer by Soumitra for What should I learn next after VB and C#Soumitra2008-09-15T04:08:06Z2008-09-15T04:08:06Z<p>i would suggest you learn Flash and Actionscript. That should enable you to transition to higher level languages.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/61934#619348Answer by Ray Vega for What should I learn next after VB and C#Ray Vega2008-09-15T06:30:03Z2008-09-15T06:42:59Z<p><a href="http://www.python.org/" rel="nofollow">Python</a>. Great language with a very clean syntax. Learning and using it has actually made me a better C# programmer.</p>
<p>For example, Python allowed me to better understand what are lambda functions and when to use them. It probably would have taken me longer to get that concept with just C# alone. C#'s syntax for lambdas, anonymous functions, and especially for delegates served as a distraction to comprehending its intent and how useful it can truly be.</p>
<p>Python has also served as a nice utility scripting language to support my core development efforts in C# from writing build scripts to using it for code generation. The equivalent of those tasks would have taking me longer to code if I just used C#. </p>
<p>If you do want to stick to the .NET world then look into <a href="http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython" rel="nofollow">IronPython</a>. Essentially same syntax as Python but interpreted and runs on the .NET CLR.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/62024#620240Answer by Pierre for What should I learn next after VB and C#Pierre2008-09-15T09:31:56Z2008-09-15T09:31:56Z<p>How about digging somewhat deeper in the inner workings of a computer, e.g. in order to really understand what memory is all about, how pointers are used, how the CPU processes the data, etc. ? You could indeed follow the C/C++ path, but you'd still be pretty high level. Why not play around with assembly language? You could for instance try and pick IL, the intermediate language generated by the .NET compilers, which is a <em>synthetic</em> assembly language understood by the CLR and which gets translated on the fly to x86 (or whatever) instructions by the JIT. Or maybe, you could try to understand how your code executes, by following step by step in your debugger, at the disassembly level.</p>
<p>For those of you who understand French or German, I'd recommend trying out the free Dauphin Simulator developed by a Swiss company (French page is here <a href="http://www.epsitec.ch/dauphin/" rel="nofollow">http://www.epsitec.ch/dauphin/</a>). The Dauphin simulates a simple 16-bit CPU system where you can manipulate the memory, the registers and very simple I/O peripherals.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/62028#62028-1Answer by Stewart Johnson for What should I learn next after VB and C#Stewart Johnson2008-09-15T09:36:08Z2008-09-15T09:36:08Z<p>Without a doubt I would pick ruby. </p>
<p>Some people will probably suggest that you jump into functional programming (e.g.: LISP) but I expect you'll find that too big of a jump given your heritage with VB and C#. </p>
<p>Ruby will introduce you to a different style of programming (i.e.: closures) that is a movement <em>towards</em> functional programming without making the full jump. Then one day when you try out LISP at least some of the concepts will seem familiar.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/62043#620430Answer by PintSizedCat for What should I learn next after VB and C#PintSizedCat2008-09-15T09:44:49Z2008-09-15T09:44:49Z<p>I'd certainly agree with what Pierre says (I'd vote him up but I don't have reputation yet).</p>
<p>It's very useful to have the knowledge of the inner workings of a computer and the lower level behind you when you're working in higher level languages. It gives greater scope in what you're doing and means you can write far better code. C/C++, X86, or reading a book about hardware and what's actually going on in the computer like Code by Charles Petzold are all great choices.</p>
<p>Alternatively you could branch into specific algorithms, cryptography, graphics (as someone else suggested). It mostly depends where your interests lie, are you a maths guy, or into finance, maybe you like statistics or psychology. By trying to keep with what you know and enjoy you'll enjoy the programming experience better as well.</p>
<p>I hope this can be of some help and I hope you find the right langauage/subject for you.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/62415#624151Answer by Varun Mahajan for What should I learn next after VB and C#Varun Mahajan2008-09-15T12:40:46Z2008-09-15T12:40:46Z<p>You can also learn something very different i.e. LISP. F# will also be good, as it is a nics OO/FP hybrid thing</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/62535#625351Answer by etfb for What should I learn next after VB and C#etfb2008-09-15T12:53:01Z2008-09-15T12:53:01Z<p>Three languages I recommend to anyone who already has the Fortran/Algol/COBOL descendants worked out:</p>
<p>Forth, which is another procedural language, but one that forces you to understand the machine you're using. This will give you an insight into the nature of computers at a low level without subjecting you to the pain of Assembler.</p>
<p>Lisp, the only true language, the one that God wrote the universe in (don't believe <a href="http://xkcd.com/224/" rel="nofollow">Randall Munroe on the topic</a>). The user community can be a bit painful at times, but it's good to use a language that feels so thoroughly unlimited.</p>
<p>Prolog, not a language so much as a single algorithm (unification) taken to its logical extreme. Understanding the nature of backtracking is the key here.</p>
<p>The essential gift that each of these languages gives you, which the traditional procedural languages don't, is an insight into a different way of looking at algorithms. Forth teaches you to see the bytes and instructions clearly without the haze of high-level abstraction; Lisp teaches you that abstraction is what programming is all about and the details are much less important; and Prolog teaches you that, in effect, any problem can be modelled in more than one way.</p>
<p>I expect you'll never use any of these languages in real paying software development, but the knowledge you gain will repay the time you spend on them.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/62624#626240Answer by Sam for What should I learn next after VB and C#Sam2008-09-15T13:03:21Z2008-09-15T13:03:21Z<p>Go and learn a function language.</p>
<p>I'd recommend Haskell, because there is a very good book how to learn it:
<a href="http://book.realworldhaskell.org/" rel="nofollow">http://book.realworldhaskell.org/</a></p>
<p>Afterwards, since you are familiar with .net, I'd recommend F#. But learn Haskell first.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/62910#629101Answer by LepardUK for What should I learn next after VB and C#LepardUK2008-09-15T13:34:17Z2008-09-15T13:34:17Z<p>If you are looking for a new challenge why not try silverlight</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/64510#645103Answer by Erick for What should I learn next after VB and C#Erick2008-09-15T16:37:25Z2008-09-15T16:56:53Z<p>Since this seems to have turned into a cheering section for functional programming, I want to throw in my two bits. I would not spend a lot of time learning patterns if you are going to be learning a functional programming language. Functional programming reduces the need for many of the patterns simply because the structure of the language already solves many of the problems that patterns were created to handle. I'm a C# developer and it is nice to see that many of these concepts are being implimented into the language. A more detail explaination of some of the issues that are taken care of, plus a great tutorial from an OO perspective is: <a href="http://www.defmacro.org/ramblings/fp.html" rel="nofollow">http://www.defmacro.org/ramblings/fp.html</a>
<br>
Slava does a great job of explaining functional programming from an OO (Java) perspective.
<br><br>
Another great functional resource is: <a href="http://mitpress.mit.edu/sicp/full-text/book/book.html" rel="nofollow">http://mitpress.mit.edu/sicp/full-text/book/book.html</a>
<br>It is in Scheme but is really a great (free!) book for building a base for functional programming.
<br><br>
Good luck!</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/69723#697230Answer by bovium for What should I learn next after VB and C#bovium2008-09-16T06:09:19Z2008-09-16T06:09:19Z<p>You should focus on learning to make better designs using the skills you already have in vb and C#. </p>
<p>If you don't have experience using databases I would spend some time on that.</p>
<p>To make better design I would look into design patterns. Dofactory have some nice example implementations. Link: <a href="http://www.dofactory.com/Patterns/Patterns.aspx" rel="nofollow">http://www.dofactory.com/Patterns/Patterns.aspx</a></p>
<p>Another place to start is to read a book by Jimmy Nilsson called "Applying Domain-Driven Design and Patterns: With Examples in C# and .NET". This is also referred to as DDD.
Link: <a href="http://rads.stackoverflow.com/amzn/click/0321268202" rel="nofollow">http://www.amazon.com/exec/obidos/ASIN/0321268202</a>.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/69746#697461Answer by deemer for What should I learn next after VB and C#deemer2008-09-16T06:15:40Z2008-09-16T06:15:40Z<p>I would recommend learning a lower-level language, like C or C++. You will:</p>
<ul>
<li>Gain an appreciation for certain niceties of high-level languages, like the foreach construct.</li>
<li>Learn about the implementation on the underlying platform</li>
<li>Be able to write more CPU-intensive or time-constrained programs</li>
<li>Be able to speak meaningfully on subjects of optimization. (The answer is, of course, don't until you're sure you have to)</li>
<li>Understand the challenges of platform-independence.</li>
</ul>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/74654#746541Answer by David Heise for What should I learn next after VB and C#David Heise2008-09-16T17:12:05Z2008-09-16T17:12:05Z<p>Learn Assembly...when you can open a hexeditor and write your code (or better yet, open someone else's code in a hex editor and understand it) then you've got a pretty good grasp of programming!
:)</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/81233#812332Answer by jarrodn for What should I learn next after VB and C#jarrodn2008-09-17T08:49:58Z2008-09-17T08:49:58Z<p>I recommend learning about any programming language that supports high level multiprocessor programming. .NET is getting this in the System.Parallel library very soon (the CTP is out at the moment).</p>
<p>The number of available cores and CPU's is only going to increase into the future. F# lends itself to this style of programming.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/203112#2031120Answer by JB King for What should I learn next after VB and C#JB King2008-10-14T22:36:01Z2008-10-14T22:36:01Z<p>If you want to do more front-end work then I'd suggest getting into markup languages like HTML and XML along with scripting languages like JavaScript or Script# may be a good Web skill set for one idea.</p>
<p>Another way to go would be into databases like MS-SQL or PL/SQL which may complement what you already do with databases in VB or C#.</p>
<p>Scripting languages may also be an idea for something with less form to them like Windows Script Host or other languages used in CMD or BAT files.</p>
http://stackoverflow.com/questions/61826/what-should-i-learn-next-after-vb-and-c/1533603#15336030Answer by Rebol Tutorial for What should I learn next after VB and C#Rebol Tutorial2009-10-07T19:15:27Z2009-10-07T19:15:27Z<p>Java, Ruby, Python, Scala and Functional Programming with Rebol as it is the easiest and most powerfull language see for example
"Map Reduce Functions in Rebol: towards Massive Parallel Functional Programming"
<a href="http://reboltutorial.com/blog/map-reduce-functions-in-rebol-towards-massive-parallel-functional-programming-part-i/" rel="nofollow">http://reboltutorial.com/blog/map-reduce-functions-in-rebol-towards-massive-parallel-functional-programming-part-i/</a></p>