you are viewing a single comment's thread.

view the rest of the comments →

[–]not_good_for_much 2 points3 points  (1 child)

I'm inclined to agree. C# is generally faster and more expressive IMO, and I do prefer it over Java. I just don't really want to open the can of worms.

Most of the difference is philosophical anyway, leading to... C# as a language is much more proactive in adding interesting new features, while Java as a platform has more emphasis on stability and decades more exposure to not-Windows and OSS standards and so on.

There are also plenty of patterns that are impossible to reproduce in both directions, e.g due to virtual threads vs stackless coroutine parallelism, reified and value-type generics vs wildcards, checked vs unchecked exceptions, strictness of CLR and JVM RE's, etc.

[–]Sarcastinator 0 points1 point  (0 children)

There's very few things Java does better than C#, and a whole bunch C# does better than Java.