Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a language syntax "diff" cheat-sheet that someone could point me that would display the differences between something written in Java and the same thing written in C#?

I realize it's not going to be a one-to-one feature set, but from what I've seen the languages seem pretty close.

For instance it would display things like: alt text

share|improve this question
P.S. It's possible that some of the things I've added to the image above are in-accurate (but that's because I'm learning a new language) Thanks! – leeand00 Jan 21 '11 at 18:46

3 Answers

up vote 9 down vote accepted

Sure, have a look at this: http://www.harding.edu/fmccown/java_csharp_comparison.html

It covers a wide range of language features and gives you actual code examples, not just descriptions of similarities and differences.

share|improve this answer
This doesn't include the using(){} statement from C#, which is comparable to the do(){} statement in Java. – Jacob Krall Jan 21 '11 at 18:53
Nice. Watching that I wonder whats the purpose of having structs in C#? They look pretty similar to a regular class. – OscarRyz Jan 21 '11 at 18:57
1  
@Oscar, a struct in C# is a value type, whereas a class is a reference type. It changes copy-by semantics, among other things. – user414076 Jan 21 '11 at 19:01
If there is only one reason I prefer C# over Java, it's Properties, but if I'm allowed to go up to v.next, LINQ, Lambdas, async, await, Expression Trees... There's 5 More for ya Sun :-P – Firoso Jan 21 '11 at 19:06
Oh that is nice! Thank you! – leeand00 Jan 21 '11 at 19:15

Wikipedia seems to have what you're looking for.

share|improve this answer

Microsoft has a nice two-page PDF cheat sheet comparing C# and Java, available on this page in MSDN:

Moving to C# and the .NET Framework, for Java Developers

http://msdn.microsoft.com/en-us/netframework/gg715299

share|improve this answer
Direct Link: download.microsoft.com/download/D/E/E/… – bulltorious Jun 7 '12 at 16:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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