C# with Java: where to pay attention?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • freethinker
    New Member
    • May 2009
    • 17

    C# with Java: where to pay attention?

    Hi all,
    I have basic knowledge of Java, and now I started to learn C#, but I'de like to ask about the main differences and where I should pay more attention to prevent confusion between those 2 OOP languages.

    Example

    Code:
    String str = "eryesnobuytrer";
    Console.WriteLine(str.Length);
    
    String str = "eryesnobuytrer";
     System.out.println(str.length());
    Thx and Kr.
  • IanWright
    New Member
    • Jan 2008
    • 179

    #2
    I suggest googling...

    first result I got looks quite comprehensive http://www.25hoursaday.com/CsharpVsJ...ml#collections

    Comment

    Working...