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

Why is C# suddenly so popular?

There's been like a repeat explosion in the blogs lately about it. It reminds me of the earlier part of this decade when all of those frameworks for Java came out like Spring, JSF, Hibernate, Struts, Struts 2, Tapestry, etc.

I've actually been thinking about learning C#, and it seems to contain a lot of qualities that it has gotten from Java (aside from it being completely cross-platform).

It almost seems like a step backwards to me...it's not totally multi-platform, a language that's run by a corporation rather than a community...

(But, knowing this isn't the case, I've come here to find out why it isn't...) I am aware of the Mono project so that you can run it on Linux, but isn't it always behind the curve? A new version of Java would be supported on all the platforms.

share|improve this question
106  
Anybody that tells you that Java is cross-platform isn't telling you the whole story or they haven't actually tried making something cross-platform-ready. It's often a painful experience. Also, Java isn't controlled by a community. Where did you get that from? – senfo Feb 22 '09 at 19:40
17  
Java is "guided" by a community. The Java Community Process as it's called, but that's only guidance.. not control. – Mystere Man Feb 22 '09 at 19:50
7  
Most features are supported in Mono, I've made tons of console apps that I coded and compiled in VS for .NET 3.5, even using LINQ and they've worked unmodified in Linux. – M4dRefluX Feb 22 '09 at 20:02
23  
Re mono being "behind the curve"; at the language level, they're really not (OK, there's the odd compiler bug, but very rarely). It is the runtime that lags a little (see "Olive" etc). But mono is still very functional; don't underestimate it. – Marc Gravell Feb 22 '09 at 20:24
21  
When has Java ever been run by a community? Java is and was run by a corporation as much as C# is. The difference is, C# actually has some brilliant people designing the language. But you're right about the cross-platform thing. Yes, there's Mono, but the situation isn't as good as with Java – jalf Feb 22 '09 at 20:42
show 14 more comments

closed as not constructive by casperOne Apr 14 '12 at 20:02

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

31 Answers

1 2
up vote 275 down vote accepted

There's nothing "sudden" about the popularity of C#, it's been quite popular since its birth at the turn of the century.

Also, I don't understand how you can consider C# to be a step backwards from Java; if anything, C# is several steps ahead of Java. The cross-platform "issue" you mention is only an issue of politics and not one of technical capabilities; Microsoft (erroneously, IMO, but that's neither here nor there) sees no value in doing the work of bringing the .NET platform to non-MS platforms. The other issue... "a language that's run by a corporation rather than a community" is actually more of an issue with Java than it is C#; Sun still controls Java with an iron fist, despite IBM's continual pleas. Edit: Not anymore. Now IBM has to beg Oracle to modify Java...

So, to the actual question, why is C# popular?

Because:

It really is a great platform for programming. There are numerous improvements over Java, such as:

  1. Value Types
  2. Properties
  3. Delegates and Events
  4. Global Assembly Cache
  5. Runtime Generic Support

It's constantly evolving, both in terms of library support and new language features. For example:

  1. LINQ (it will change the way you iterate a collection!)
  2. Lambda Expressions
  3. Closures

It has broad reach across the Microsoft platform:

  1. WCF (Windows Communication Foundation)
  2. WPF (Windows Presentation Foundation)
  3. WP (Windows Phone)
  4. Windows Store Apps
  5. Windows Embedded
  6. Microsoft Xbox

It has broad reach outside the MS platform:

  1. iOS with Xamarin and MonoGame
  2. Android with Xamarin and MonoGame
  3. Mac with MonoGame
  4. Linux with MonoGame

And now in C# 4:

  1. Dynamic types and the DLR (i.e. runtime type binding, like python)
  2. Named and Optional arguments
  3. Covariance and Contravariance
  4. native asynchronous operators await/async

In terms of IDEs, Visual Studio is pretty darn good. I'll admit that there are features of Eclipse I'd like to see in Visual Studio, but there are features of Visual Studio I'd like to see in Eclipse, too. There's also MonoDevelop, which is shaping up nicely.

Plus, there's a great community of fellow programmers who are always willing to help out. This site is the perfect example of that.

share|improve this answer
48  
+1 on the bit that C# has numerous improvements over Java. Delegates/events is what sold me. C# 3.5 also has automatic properties which I've found indispensable. C# 4 is filled with a bunch of excellent improvements as well. – Spoike Feb 22 '09 at 20:10
10  
FYI, it's C# 3.0 that shipped with .NET 3.5. – Richard Szalay Feb 22 '09 at 20:38
21  
+1 for the Sun controlling Java comment. Reason why there is no Microsoft JVM anymore: Sun told them to bugger off. Same reason why there is C#. Same reason why Java is loosing ground to C#/Groovy/Clojure. Oops. Nice one Sun. Microsoft has actually helped out with Mono (Moonlight IIRC). – Jonathan C Dickinson Feb 23 '09 at 5:55
11  
I have used eclipse probably 5 times. Every single time, I have exited the program by it crashing. Visual Studio has not done this. Not that IDE is all that matters, but seriously... how about those sln files for VS? How about manually doing a whole bunch of crap in eclipse just to get started? – jle Feb 23 '09 at 6:19
7  
@jle: That's a good point about solution files; big benefit of VS. That said, I've worked with Eclipse many many times and never experienced a crash. Eclipse is not a bad IDE, it really isn't. When I program in Java, it's the IDE for me. I just prefer to do it in C#/VS. :) – Randolpho Feb 23 '09 at 15:29
show 22 more comments

I have ranted on about how poor Java is all along in the comments here. The truth is that C# is what Java should be today, if Sun were not so short-sighted and, might I say, 'frightened' to evolve. The opposite side of that coin, is of course, C# wouldn't exist were it not for Java and Sun with their corporate strategies with Microsoft. So yes, C# owes a lot to Java.

To me one of the most pertinent features of C# is the whole IL emit scenario. I don't think there is another language which will let you emit a JITted IL (not interpreted code, like Ruby etc.) at runtime. Remember, machine code is a lot harder to work with than IL: so saying you could do it in C/++ doesn't count :). The whole IL emit scenario has opened the language for some amazing frameworks; and these frameworks allow the developer to gather momentum at the start of a project without the usual performance penalty to worry about.

The typing and versioning system is second-to-none (if used properly). Sure most modern languages have their reflection systems, but none of them feel as intuitive as C# (hell you can reflect the reflection classes if you see fit) - most (Java is an exception here) have built-in keywords which just seems alien when you use them. C# reflects classes using classes - it's insane!

And there is the framework. The namespacing system (which is something so subtle) makes a huge difference. When I did Java I spent my life importing types and resolving conflicts - the system was nearly there, it just took Microsoft to perfect it. The Java/C++ standard libraries are a mess when compared to the .Net BCL. Since when does that namespace of something start with the name of the language in use, that's redundancy. Or for that matter: org.joe.my.controls. This means that to use Joe's controls you must know that they are free and know the spelling of his name.

Much of this thread is about Java VS C#, and that's exactly the point. Java redefined the programming landscape, and C# has done it again. That is why the blog buzz around C# has had similar properties to the one around Java. Java was a great language and C# is a great language. The rest pale in comparison.

share|improve this answer
4  
I don't think this is worth the downmods; it certainly tells it like it is. +1 – Randolpho Feb 23 '09 at 15:38
14  
A couple of points: 1) Java has been JITted for about ten years; please stop calling it interpreted. 2) Judging from en.wikipedia.org/wiki/Reflection_(computer_science), C# and Java reflection are roughly equivalent. I don't see that C#'s system is a major advantage over Java. – Michael Myers Feb 23 '09 at 18:29
4  
You can create new classes at runtime in Java, but it's a major pain. – Michael Myers Aug 4 '09 at 20:28
10  
+1 the remark about c# being where java should have been is, IMHO, right on the money. – Colin Sep 26 '09 at 21:39
3  
@Robert: You do realize though, following the argument, that the implicit meaning attached to the 'Java' and 'C#' refers to the stacks not just lexicons. Otherwise, it will be a silly point to talk about platform agnosticism as a property. It makes no sense to describe a pure higer-level language as cross-platform if you are not speaking of the available compilers, interpreters, class library, and utilities ... especially enterprise frameworks – Pita.O Dec 21 '09 at 21:56
show 9 more comments

It's popular because it's now Microsoft's first-class supported language, and Microsoft steers a very large ecosystem with a lot of inertia.

share|improve this answer
23  
+1, Microsoft really does try hard. And it has paid off. – Jonathan C Dickinson Feb 23 '09 at 5:58
4  
Indeed, the reactions to this topic cannot be explained by the language alone. – CurtainDog Apr 21 '09 at 21:56
show 1 more comment

How about a "corporation of smart people that also listen"?
The guy who designed C# is very smart, I'd say.

And personally, I've switched to C# because of LINQ and the semi-functional programming support. IMO I think that is what "wow"-ed most corporate developers and made them switch over from other languages.

share|improve this answer
4  
No doubt they're very smart, but that's also its curse: the language is huge, and the stdlib is huge^2. I tend to find it much easier to work with systems designed by someone of moderate intelligence but good taste and humility. – Ken Feb 23 '09 at 16:17
1  
I take it you switched from Delphi? – CurtainDog Apr 21 '09 at 21:55
show 6 more comments

As other people have said, the word "popular" needs to be defined in some context.

I would point you to one measure of popularity, that is the Tiobe Programming Community Index. In about 8 years, C# has only gained about 5% popularity. Surely you can see it rising (when compared to itself), but when viewed within the grand scheme of things, it seems that it is too slow when compared to other languages. At 5%, it's well behind the next language (PHP - 8.8%). Even it's increase rate (+0.55%) is about half that of C (+0.98).

It's certainly gaining popularity, but I don't see it gaining so much as you see it.

For quick reference, here are the graphs I'm referring to:

Tiobe Programming Community Index

TIOBE Index History for Language C#

share|improve this answer
28  
There are lies, damned lies and statistics. Caveat emptor – Spence Feb 23 '09 at 0:15
40  
I can't trust a graph that is made using keyword searches show me the popularity of a particular language, especially in the case of C#, where "tons" of searches are made without "C#" but instead contain MSDN or .Net, or simply class names. – Pop Catalin Feb 23 '09 at 18:08
19  
"The popular search engines Google, MSN, Yahoo!, and YouTube are used to calculate the ratings" How can you rely on something based on query result from search engine? Suppose you've the best programming language with no bugs and excellent offline documentation, since is perfect as is you will probably not found anything on the net, so this made this language unpopolar? Meaningless. – kentaromiura Apr 23 '09 at 12:38
7  
O'Reilly's analysis of the computer book market shows the same broad trends. See radar.oreilly.com/2009/02/…, in particular the graph at radar.oreilly.com/languages_all_5yrs.png – Nelson Aug 31 '09 at 14:34
6  
I like this data. But my interpretation of it is: See how much internet search you need to do to get your work done on the different languages!! Or "IDE sophistication reduces the need to search online". Or "Don't name your kid C# because each of his teachers will call him a different thing (csharp, c-sharp, cs, .net dotnet) and he'll look like he missed school!" Or "The C# community is not such a net-chatty bunch afterall." Or "Empty vessels make the most sound." – Pita.O Dec 21 '09 at 22:12
show 16 more comments

Well, my completely subjective view is:

C# pro's

  • Best IDE ever (Visual Studio)
  • Best documentation (I luv msdn :) )
  • Really easy to learn
  • WPF is awesome.
  • Usable for a lot of deployment projects (silverlight, windows compact and ofc "ordinary" windows programming
  • As you said - tons of nice blogs
  • MS is really doing a great job enhancing .NET all the time

C# con's

  • Not completely cross-platform

.. So, in my view, the pro's outweight the con's by a large margin. So as long as I'm not doing anything that requires a total cross-platform design and which needs a window-based GUI, I wouldn't consider other languages as it is right now. :)

share|improve this answer
5  
C# cons: VS might be a nice IDE, but it's not free (I know there's an Express version but you can't have integrated source control with that version). – cdmckay Feb 22 '09 at 19:55
4  
@cdmckay: Even still, Visual Studio Express is really nice - especially for being free. – xian Feb 22 '09 at 19:58
7  
@cdmckay: Bah! You can still run source control such as subversion or mercurial just fine without VS integration. – Spoike Feb 22 '09 at 20:13
6  
@cdmckay - re integrated source control; personally, I vastly prefer it separate to the IDE (tortoise, etc) – Marc Gravell Feb 22 '09 at 20:21
11  
I'm talking about myself, but I find Visual Studio intrusive and very poor in refactoring. I certainly prefer Eclipse as long as I'm writing code (which is 99% of the time; I don't do GUI). As for documentation, I still find MSDN much lacking compared to Java IMHO. – Hosam Aly Feb 22 '09 at 20:45
show 13 more comments

There is nothing about C# that is not platform independent. C# is entirely platform independent, and it exists on multiple platforms. The .NET framework has parts of it that are more oriented towards windows, but that is not C#.

Unlike Java, there is a clear seperation between the languages used, and the runtime. In Java, both the language and the runtime are "Java" and are inextricable. Yes, there are various 3rd party languages developed for Java, but none of them have Sun's blessing, nor was the runtime designed to facilitiate this.

Consider that C# and the CLI/CLR are both ISO standards, fully documented, with royalty free licenses. Java is (mostly) GPL'd now, but is not an international standard. C# 3 is not yet a standard though, and probably will be skipped with 4.0 being resubmitted for standardization.

Plus, C# is a better language than Java in many respects. It's easier to work with, and none of that Checked exception BS. And it has extension capabilities that Java just can't match, not to mention versioning and whole raft of other features.

share|improve this answer
9  
While what you say is true, c# in most people's mind is intimately tied to .NET. When people think c#, I think they mostly think of .NET, not c#. – Giovanni Galbo Feb 22 '09 at 19:41
8  
Argh, "that checked exception BS" is what I miss most in .NET you insensitive clod! – Wim Coenen Feb 22 '09 at 20:10
4  
True, but the question is "Why is C# suddenly so popular," and a huge (probably the biggest) is because of the enormous library behind c# - .NET. – Giovanni Galbo Feb 23 '09 at 0:47
show 10 more comments

Just a suggestion: I wouldn't confuse "popular with bloggers", "popular with programmers who can choose their own tools", and "widely used in some specific environments". (Especially beware of the first of those. Based on what some bloggers like to write about, Rails has taken over the world, Java is dead, and COBOL never existed... ;-)

Instead, I'd look at my current environment (or the one I'm trying to break into), and ask "What tools and techniques are emerging in that area?" and ignore marketing hype and blog rants (pro or con).

share|improve this answer
4  
Interesting thought Joel, I'll have to keep that in mind. I used to base my option solely on blog posts. What other things can I base my option on? Job listings? – leeand00 Feb 23 '09 at 13:28

What do you mean suddenly? C# has been around for a while now and it is continually being enhanced. The new features actually make it a quite unique language.

Also .NET offers a very good alternative to doing Win32, MFC or the like. It is much easier to use and while the feature set may not be complete, it will suffice in most cases.

Additionally C# and .NET may be used for both embedded systems as well as entertainment devices such as Xbox 360 and Zune.

share|improve this answer
2  
Not to mention cars, watches, phones and robots. – Richard Szalay Feb 22 '09 at 20:37
show 7 more comments

I prefer coding in C# over Java. They feel so similar to me that it's the IDE that makes the biggest impact between the two. Visual Studio over Eclipse any day of the week.

share|improve this answer
2  
VS does actually have #1, kind of. it's called snippets. Type "class" then hit tab twice. Or type "for" and hit tab twice. – Mystere Man Feb 22 '09 at 19:53
5  
Try NetBeans, it's much nicer experience than Eclipse. – cdmckay Feb 22 '09 at 19:56
3  
@quant_dev: Although I prefer coding C# over Java, Eclipse doesn't suck! It has excellent code assist and refactoring support, something that VS still currently lack unless you have CodeRush or Resharper. – Spoike Feb 22 '09 at 20:03
1  
Mine are 1) CTRL+SHIFT+R - Find resource/class and 2) CTRL+O - goto member. They are adding #1 to VS2010, not sure about #2 though. – Richard Szalay Feb 22 '09 at 20:40
show 3 more comments

I am an anti-Microsoft guy, and I have recently gotten quite interested in .NET and C#, so they must be doing something right ;-)

A couple of things have caught my attention. Just seeing what the guys making the Unity3D engine managed to get out of using Mono, convinced me that Mono is not a second class product. OK, .NET is still better but Mono is good enough for real commercial usage.

Secondly, C# has grown to quite a respectful language. Especially with all the concepts from functional programming being added like type inference, lambda functions, LINQ, etc. it has become quite powerful.

I am a Mac user, but now I am considering embedding Mono in my applications and using it as a script language, like Unity3D. I think that gives some really cool opportunities.

share|improve this answer
show 4 more comments

C# behaves like I always wanted Java to behave.

It generally "feels" like I write less code to achieve the same outcome than the equivalent in Java. Java seems to force you to be "enterprisey", C# just gives you the option (totally subjective "vibe" based opinion).

Cross-platform is a non issue for me, there are enough Windows machines out there to make a living writing for Windows, one day, that may change, but probably not this year.

share|improve this answer

Suddenly? It hasn't suddenly become popular. I don't know where you have been, but it's been pretty steadily gaining momentum for quite a few years. You may be hearing a lot of buzz about it, because they are introducing a lot of new features to the language, whereas languages like Java have been pretty stagnant in the feature department for the last few years.

share|improve this answer
show 1 more comment

Specifically answering the question "There's been like a repeat explosion in the blogs lately about it".

Microsoft have added a significant language change in each major release rather than just the addition of new libraries (only including the major ones in the list).

  1. 1.0: first release, 2000
  2. 2.0: Generics, generators and lexical closures added 2005
  3. 3.0: Lambdas (and expressions though most coders don't use that directly) that allow Linq in 2007
  4. 4.0: Dynamic programming planned for 2010

This change causes changes in the preferred way to do things, the idioms of the language need reinterpretation or complete redefinition. This generates a rich source of content for discussion.

It helps that in the same time frame of C# and the .NET platform's public life Microsoft has become considerably more supportive of blogging within the organisation to the extent that they host them and provide a means for teams rather than individuals (who may not be able to sustain such an effort on their own) to provide one.

The discussion of why C# is popular has been dealt with in many other questions and restated here too.

share|improve this answer

Re: Java vs C#

C# has the advantage of being released after Java and thus the designers were able to improve upon Java's syntax and libraries. And I think Java had the disadvantage of early widespread adoption, which made it harder to evolve the language early on.

I like C# because I think it has a very practical set of features in comparison. For example, C# has properties, which you could say are "syntactic sugar" for basic getter/setters. But you can use them to semantically separate get/set operations from other methods. And you can do this with one line of code in 3.5.

Also in C#: string.IsNullOrEmpty(string s)

When I do work with Java, it seems like I need to have giant books on my desk to be able to do really basic things. I don't mean to say C# is better than Java. You can definitely do amazing things with Java and the time I got to use WebMethods, I loved it. However, I think C# is nicer to work with. Perhaps the recent surge in popularity (if it exists) is due to people switching over and liking it (the iPhone effect). Also, the C# language is moving in a pretty exciting direction (for geeks).

NB: I do not work in situations where cross-platform is needed.

share|improve this answer
3  
And what's the excuse of Java not to improve even if they released several versions after C#? (Well they did improved, here and there, but those attempts are shy compared to what C# did every version) – Pop Catalin Feb 23 '09 at 18:20

Wasn't Java "corporate driven" until very recently, if I'm not mistaken?

Also, (lets forget about Mono just for a minute), multi-platform just doesn't matter to a lot of people.

As for why its so popular; he language looks like c++ and java (so less learning curve), the library is awesome and Visual Studio is considered the best IDE by many people.

share|improve this answer
3  
And the language has pointers, mind you. Java locks you into a safe pointer-less world. C# lets you delve down to that level if you see so fit. – Jonathan C Dickinson Feb 23 '09 at 6:03
2  
So pointers are there if you need them, but if you don't, you're not forced to use them either? Hmm that does sound pretty good. – leeand00 Feb 23 '09 at 13:30

The thing is that the parts of the .NET Framework that are not cross-platform (such as WPF, System.Management namespace, etc.) are usually things that you couldn't get with Java anyway. There aren't many things in the .NET Framework that are not supported by Mono but a similar concept exists in Java/JRE.

share|improve this answer
show 2 more comments

I like C# a LOT more than Java. It feels more natural to me and has more features. Also, I find the GUI classes' names to be more logical (pane... Swing?)

And I kind of liked Visual Studio/C#, and I love XNA.

share|improve this answer

It's popular because it's just like Java, except evolving and adding useful features at a pace faster than the utterly glacial pace of Java. This means you get most of the advantages of Java, such as a good VM, tons of libraries, the backing of a large corporation, etc., and the same general feel of the language. However, you don't have to deal with lack of properties, closures, and just about every other modern feature that Java eschews.

share|improve this answer
2  
You can be jitted and have a VM. VM does not mean "interpreted". Java was created to be Interpreted, and a VM, .NET was created to be compiled and have a VM – Mystere Man Feb 23 '09 at 3:08
2  
almost every currently available non academic java VM is Jitted. – ShuggyCoUk Feb 23 '09 at 12:26
2  
Yes, please remember folks that Java has JIT compilation too. Let's keep our facts straight. – Randolpho Feb 23 '09 at 15:42
show 3 more comments

Reasons for C#'s popularity:

  • backing by major corporation
  • easier app development, as compared to C++/MFC, for eg
  • flat learning curve (coming from language like C++ or Java)
  • lots of language constructs that s/w devs like
  • continuing support by MS of language
  • popularity often begets more popularity (of anything, incl language)
share|improve this answer

I have about equal parts experience in Java and C#. I will say that for anyone who wants to pick up a language, C# generally is easier. That, taken with many of the reasons listed above will account some of the perception noted.

As for the rest, I feel that the Stack Overflow community is one that is slightly more favorful towards .NET than Java. This likely contributes to much of your perception as well. At this moment, these are the counts of questions listed as "new" on Stack Overflow with the following tags:

  • C#: 20,902
  • Java: 10,881
share|improve this answer
show 1 more comment

I think it's the way Microsoft has nurtured the developer community personally - ever since Steve Ballmer shouted out "developers developers developers!!!". They're working hard to get followers, and in a lot of cases it's working. In aus - the user groups are great, and Microsoft (until recently because of budget cuts) even paid for free food and drink - gave away prizes, etc. It all might sound like a bit of who-ha, but it's working to a certain degree.

share|improve this answer
show 1 more comment

Why is C# suddenly popular? If you think suddenly means for the past few years, then I guess it is rather sudden. Considering we did not have a release of C# (.NET) until 2002, that is not surprising, however.

Despite Mike's comment, Visual Studio is considered a good UI, but the IDE is not the main reason someone picks a language. The fact Microsoft is pushing C# (and has been) and the fact that there are many Microsoft shops in the United States helps the popularity.

The fact that C# is cross platform (with Mono) probably helps some, but the LAMP stack is far more popular on Linux, so I don't think this is a very good reason for the popularity of C#.

share|improve this answer

In my opinion, its the gaming aspect of it. Using C# with XNA, I can without a ton of effort start geeking out some games that'll run on an X-box or my PC. I've tried game programming before using C++ and OpenGL and it required a lot of heavy lifting (my back still hurts). Other than that, I think its just preference. Both Java and C# help push each other along, I know the object for loop was a C# thing that Java incorporated. So for me at least, in the game programming realm I love C#, but at work, I"m a Java guy.

share|improve this answer

MS has made some good frameworks for C#.On top of the frameworkds, you can build different applications EASILY from frontend to backend.

C#'s syntax combined Java and other C alike languages so that it is easy for programmers to jump on.

share|improve this answer
show 1 more comment

Because it's an elegant, mature language that lends itself well to object-oriented programming. It is also the defacto choice for new developers working within the .NET framework and this has seen a big growth in the last few years. I quite like Java, but Sun have never really focused on providing a next-generation web development platform like ASP.NET (especially MVC). Because more and more apps are going online now, I think Java is losing ground here.

And I also would say 'hats off' to Microsoft for recognising the best parts of Java and incorporating them into C#, rather than re-inventing the wheel (badly)!

share|improve this answer

The time has come to mention the new async methodology and other new features in the upcoming C# 4.5. While Java 7 showed a very unobtrusive update list.

share|improve this answer

In my opinion, C# is popular because it is as easy as VB and more powerful than Java. If you think of a Java as a reaction to C++, C# is a better reaction to C++ because it didn't strip almost any features from the language, but did them right (for example, operator overloading). The only thing I really miss when I code in C# is using const and mutable to enforce logical const-correctness.

share|improve this answer

I think C# is a respectable language since it has come up in the world. Java is a great language but has the same situation as C# with respect to its future because both languages are controlled by very-closed corporations (SUN&MS).

Open sources languages are growing up nowadays, maybe in the future there will be an open C# controlled by the community and running over mono.

share|improve this answer
show 1 more comment

In addition to the other benefits listed above, one key difference between Java and C# is the amount of examples and support you can get. It is fantastic!

share|improve this answer
1 2

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