vote up 15 vote down star
4

As a response to this thread:

http://stackoverflow.com/questions/457822/what-are-the-things-java-got-right

What are the things C# got right?

Please don't list the things C# did wrong, just right.

flag
Possible to post the "exact duplicate" link? – Kb Feb 4 at 16:50
Where is the duplicate question? I can't find it. Please post duplicate question link. – Pop Catalin Feb 4 at 16:51
I cant find the duplicate link. – Gary Willoughby Feb 4 at 16:53
5  
What is the rationale behind closing this? We're not supposed to consider the design of a programming language? Really? Ridiculous. – Lee Harold Feb 4 at 16:59
1  
I'm glad this process is democratic! – Gary Willoughby Feb 4 at 23:52
show 4 more comments

24 Answers

vote up 2 vote down

Aside from language features already mentioned, it was the people. Anders Hejlsberg at the helm. The whole C# and .NET Framework team for that matter. Community interaction was very important as well. C# was developed at the right time. Java was little too early, perhaps, but C# benefited from the huge growth of the internet in a time when blogs just started exploding in the developer space, and Microsoft payed attention and communicated a lot with the developer community. They wooed students, universities and colleges, threw free or cheap training events everywhere, and made the .NET Framework something that goes end-to-end from embedded systems (.NET Micro Framework) to desktop to server to database. They made tools and frameworks around .NET for the enterprise, and even put out XNA for XBox development. Plus everything tries to play nice with whatever language you'd like, or have to integrate with.

link|flag
vote up 2 vote down

C-style syntax. Clean, efficient, and understandable.

link|flag
vote up 2 vote down

It's hard to stay away from wonders of .NET Framework when answering such questions.

It's also hard to avoid repeating "LINQ" and "Lambda Expressions" over and over which are almost the coolest improvements done on a mainstream programming language.

I like the naming conventions, especially Microsoft's extra effort to kill ugly Hungarian prefixes like "m_" from MFC people. I believe code looks cleaner and less cluttered, making it much easier to read.

The "using() { }" method to hint compiler about an object's lifetime is also cool.

link|flag
vote up 2 vote down

Eliminating .h files!

link|flag
vote up 8 vote down

@"unescaped strings" (especially when used with regex. "\\s*\\d.\\d" or @"\s\d.\d"?)

link|flag
vote up 2 vote down

Optional parameters in C# 4.0 will be pretty awesome too.

link|flag
vote up 1 vote down

Does the C# stdlib count? Their regexp engine is (surprisingly, to me) one of the best I've seen. In particular, it supports arbitrary lookbehind (rare), and a MatchEvaluator delegate. Short of just giving me the parse tree (like CL-PPCRE), this is about as sweet as they come.

link|flag
wouldn't this be the .net framework and not c#? – Brian Surowiec Sep 10 at 21:35
vote up 3 vote down

Having been stuck developing in J2ME lately after my whole career in C#: Properties and delegates/events.

link|flag
vote up 3 vote down

Reflection

link|flag
vote up 5 vote down
  • Automatic properties.
  • Classes
link|flag
vote up 8 vote down

C# got standardized by ISO (ISO/IEC 23270) and ECMA (ECMA-334).

link|flag
+10 if I could! – JoshJordan Aug 16 at 12:53
vote up 8 vote down

using statement

link|flag
vote up 6 vote down

Delegates/events

link|flag
vote up 6 vote down

Properties!

link|flag
vote up 28 vote down

Let's see,

  • Properties (basically standardization of get/set pair methods at framework level)
  • Same for Events
  • Only explicit fallthrough on case statements allowed ( a serious source of bugs in C/C++)
  • The using statement
  • Expression<Func<>> ... allows code to be reinterpreted at runtime, making Linq 2 SQL possible.
  • Iterators (using yield to build state machine iterators automatically by the compiler)
  • Operator overloading. Only safe overloading allowed ( <= is computed automatically from < and == and complementary operators must always be defined)
  • Lambda syntax, (I like e => e + 1, more than in most languages).
  • explicit overriding of virtual functions using override.
  • Extension methods :)
  • The Linq pattern ( Linq to anything ) ...
link|flag
I did not know that C# only allowed explicit fallthrough on case statements. Nice! – Gary Willoughby Feb 4 at 16:25
and [Attributes] – Anthony Feb 4 at 16:42
upvote for 'using' statement – Joel Coehoorn Feb 4 at 16:46
By "explicit fall-through", do you mean by using GOTO? You cannot fall through in C# switch statements at all, although you can fall through empty cases, which is a bit odd but useful nonetheless. – Ed Swangren Sep 10 at 21:35
Yes by explicit fall through I mean goto, but more it would be more accurate to say no fall-through allowed (except on empty cases). – Pop Catalin Sep 11 at 0:01
show 1 more comment
vote up 3 vote down

I really like MethodInvoke for coordinating threads to the main threads for updates (although this may be a .NET thing). Thread coordination in C/C++ was such a spectacular pain...

Also, just the whole thread starting and running syntax, with delegates, is just extremely useful.

link|flag
vote up 6 vote down

IDisposable/using pattern, null coelescing operator (??), extension methods

link|flag
1  
No way, they didn't get the null coalescing operator right! If they had, you could do this: int value = someObject.Value ?? 5; // coalesces to 5 if someObject is null – mquander Feb 4 at 16:31
1  
That would indeed be handy... But null propagation is not that simple. – SealedSun Feb 4 at 16:52
1  
@mquander: is there any language that does that? I'm happy with int? i = null; k = i ?? 0; – Matt Briggs Feb 4 at 17:16
@Matt - not that I know of, but it would sure be really, really convenient, and I don't know why it would be difficult or confusing to implement. – mquander Feb 4 at 17:36
@mquander: You can almost do that with nullable types. int? foo = null; int bar = foo ?? 5; – Joel Mueller Feb 4 at 22:40
show 2 more comments
vote up 4 vote down

Structs, pointers (especially "pinning"), delegates, generics, assemblies, AppDomains, garbage collection, namespaces.

So that it doesn't look like mere fawning praise, here are a few things deliberately excluded from the list (though, in keeping with the spirit of the question, I won't elaborate on them):

finalization, coroutines (the "yield" keyword), collections API, platform neutrality

link|flag
I have yet to use the yield keyword...nor really understand how/when it is useful. – Richard E Feb 4 at 16:13
If you ever wrote your own collection classes in .NET 1.0, and then again in .NET 2.0, you'd understand why "yield" is awesome. I'd like to know why it was excluded. – Joel Mueller Feb 4 at 22:32
Yield is fantastic, and very handy. I left it out of my list of things that C# "got right" because they don't implement full coroutines. – benjismith Feb 4 at 23:25
What do you think is missing from yield return re: coroutines? – Earwicker Mar 18 at 21:40
vote up 6 vote down

LINQ syntax

link|flag
vote up 5 vote down

Not specifically C# - Visual Studio :)

link|flag
vote up 10 vote down

lambda expressions

link|flag
vote up 13 vote down

Generics and garbage collection

link|flag
vote up 8 vote down

Garbage collection, although you could say that is a .NET thing.

link|flag
vote up 7 vote down

case sensitivity

link|flag
2  
case sensitivity by default is needed for string literals/comparisons, but for the language itself I really like a case_aware approach, where it's not case sensitive, but the ide does know and correct when you use a different case from the declaration. – Joel Coehoorn Feb 4 at 16:08
I think case sensitivity is stupid. I'm with Joel … and I actually think that VB is doing it right, even though proper casing all their keywords might not be en vogue any more. – Konrad Rudolph Feb 4 at 16:34
No, even in VB, you force developers to always use the same casing as used in the definition, making VB de facto a case-sensitive language. Compiler should, however, be smart enough to recognize casing errors and suggest correct spellings. – SealedSun Feb 4 at 16:50
I like case sensitivity in a language. If I have a property Foo and a method which takes an argument foo, I want to be able to write Foo = foo. – Ed Swangren Sep 10 at 21:36

Your Answer

Get an OpenID
or

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