Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)

  • RE: Is C# Better?

    I would like to mention two other languages compiling to MSIL, Boo[/url] and Cobra[/url]

    They are both using Python-style blocks, that is Endless and without curly brackets.

    Boo compiles directly to MSIL,...

  • RE: Is C# Better?

    And all those curly brackets. Should they be typed to the right

    if (wosh) {

    ..statement;

    ..statement;

    }

    or aligned

    if (wosh)

    {

    ..statement;

    ..statement;

    }

    The second style is used in the Microsoft community.

    The first style is used by strong...

Viewing 2 posts - 1 through 2 (of 2 total)