Talk:Comparison of C Sharp and Java: Difference between revisions

Content deleted Content added
Tbjablin (talk | contribs)
Method invocation of Java is simpler than C#?
Line 82:
 
Also, looking at your benchmarks they are quite clearly dominated by Java's slow startup time. You might consider benchmarks that run for atleast a minute. Compare your results with [[http://www.osnews.com/story.php?news_id=5602]] at that time Java was outprerforming C# in every area except trig performance, but things may have changed since then. [[User:Tbjablin|Tbjablin]] 01:33, 24 Apr 2005 (UTC)
 
== Method invocation of Java is simpler than C#? ==
 
The article states about Java:
"Method invocation model is simpler, making it easier to implement and at times easier to read."
 
Maybe it's just me, but I don't see the difference between<br>
''javaObject.methodCall()''<br>
and<br>
''csharpObject.methodCall()''<br>
 
Am I missing something? Maybe you are talking about the "best practice" of capitalizing method names. This is not a feature of C# any more than creating meaningful variable names, or using for loops instead of while loops, i.e. it's up to programmer preference.