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.
|
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. |
||||||||||||||
|
|
|
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. |
|||
|
|
|
|
C-style syntax. Clean, efficient, and understandable. |
|||
|
|
|
|
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. |
|||
|
|
|
|
Eliminating .h files! |
|||
|
|
|
|
@"unescaped strings" (especially when used with regex. "\\s*\\d.\\d" or @"\s\d.\d"?) |
|||
|
|
|
|
Optional parameters in C# 4.0 will be pretty awesome too. |
|||
|
|
|
|
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. |
|||
|
|
|
Having been stuck developing in J2ME lately after my whole career in C#: Properties and delegates/events. |
|||
|
|
|
|
Reflection |
|||
|
|
|
|
|
|||
|
|
|
|
C# got standardized by ISO (ISO/IEC 23270) and ECMA (ECMA-334). |
|||
|
|
|
using statement |
|||
|
|
|
|
Delegates/events |
|||
|
|
|
|
Properties! |
|||
|
|
|
|
Let's see,
|
||||||||||
|
|
|
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. |
|||
|
|
|
|
IDisposable/using pattern, null coelescing operator (??), extension methods |
||||||||||||||||
|
|
|
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 |
||||||||
|
|
|
LINQ syntax |
|||
|
|
|
|
Not specifically C# - Visual Studio :) |
|||
|
|
|
|
lambda expressions |
|||
|
|
|
|
Generics and garbage collection |
|||
|
|
|
|
Garbage collection, although you could say that is a .NET thing. |
|||
|
|
|
|
case sensitivity |
||||||||||
|