• drake@lemmy.sdf.org
    link
    fedilink
    arrow-up
    0
    ·
    1 day ago

    C# is pretty good generally - I know it far better than any other and it pays my bills! - but it certainly has its weak points. Particularly around the newer features, a lot of them feel really rushed and just kind of shitty.

    The one I hate the most is the whole “nullable” pattern. It’s a total mess. Having to mark up files as #nullable enable, having to mark methods with a bunch of attributes, and the way that it works differently if it’s a value type or a reference type, it’s just so half-baked.

    If you spend some time with a more modern language like Rust or Swift then you’ll quickly start to notice C#’s weaknesses.

    • KubeRoot@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      0
      ·
      20 hours ago

      I feel like you’re doing something wrong with the nullables… I’m pretty sure you don’t need to mark up files, you can just enable it on the whole project? I’m not sure about the attributes, you might have a point there, but it just makes sense for value vs reference types IMO, since value types are already implicitly different in terms of nullability.

      But yeah, I can imagine it’s half-baked, since nullable reference types (that’s the name, previously reference types were just nullable by default with no extra features) are a more recent addition to the language, one that wasn’t built with them in mind.