• 0 Posts
  • 664 Comments
Joined 1 year ago
cake
Cake day: June 23rd, 2023

help-circle

  • Valmond@lemmy.worldtoTechnology@lemmy.worldMicrosoft Teams is dog shit
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    5 hours ago

    Now you are doing it again, you just say generic sensible stuff strawman way.

    Like yeah I know about “the assignment operator” and it’s still shitty you can’t decide what it’s copying. You explaining how it works doesn’t make it better lol!

    You are also blatantly wrong, there is absolutely no reason to not let you copy a class or pass an int as a ref “because of the garbage collector”, if you want to make a language having these functionalities there is nothing preventing it to be done correctly.

    Also c# is an inefficient language to begin with, not letting the user do as he pleases is just dumbing things down, nothing to do with efficiency.

    Also, we all have tons of experience (5 years xp isn’t experienced btw) no need to go get your diploma :-)

    And another straw man, when did I say that a language is better than another? Never did I do that, but I guess you are not happy with all your arguments geting shot down.

    C# is a crap language, if you are forced to use it like at work, or if you don’t want to learn another one, use it!

    But you can’t polish a turd.



  • Valmond@lemmy.worldtoTechnology@lemmy.worldMicrosoft Teams is dog shit
    link
    fedilink
    English
    arrow-up
    1
    arrow-down
    1
    ·
    20 hours ago

    In C++ you have the choice, the compiler makes the shallow copy (you know what that is right?) automatically if needed, or you can move around the pointer or a ref. Or, transform the shallow copy into a deep copy if you need that.

    In c# you don’t even not have the choice, ints etc gets copied but classes aren’t. Where’s the logic behind that?

    And as so many others you scramble to find some excuse that “you should probably not do that very often anyways” or some other bullshit.

    I heard all that 20 years ago when it actually had some merit for people trying to run it on the old crappy hardware of the day, today it’s just moot.

    Need speed or low memory usage? Learn to code in C/C++ for example. Heard Rust is great too.

    C# is just an old wonky language.

    /Rant off


  • .Equals and == has different meanings? Like === in php or is it javascript 😅

    If you don’t see the problem with reassignment/pointer walking, then you are just too used to it to notice that it is total shit, how do you even copy the data from an instance of a class to another… Or are you “not supposed to do that”? If so, okay, but then c# is a ‘simple’ language, a script language like python or php.

    Also when you have a class A, make an instance isn’t:

    A a;

    I mean wtf…

    To each their own I guess :-) !







  • It’s a single =

    a = 5;

    b = c;

    And hell, “use .Equal” is exactly what it is all about, have you heard of == ?

    Back in the day all the big languages were hard to learn and had lots of quirks, but somehow C/C++ moved on and became quite simple and elegant (you can write the worst trash with it ofc. but that’s like saying you shouldn’t cook because you might burn your chicken). C# not so much.