• FuglyDuck@lemmy.world
    link
    fedilink
    English
    arrow-up
    9
    ·
    3 months ago

    There’s a lot out there if you know where to look.

    Plenty in the windows support forums. Look for the guy who’s not an MS employee still there helping people. Don’t make too much fun, they’re the only ones who’re any good and sorting out issues…

    • EnderMB@lemmy.world
      link
      fedilink
      arrow-up
      4
      ·
      3 months ago

      Are they fanboys, though? I used to be one of those guys back when I used to help debug Windows permissions issues (it was always permissions issues) when getting .NET code to run on Windows 7. If anything, I think a lot of Windows people know that everything on Linux is far better supported and had more developer oversight, but ultimately these were the tools you had to use to use your language of choice.

      If anything, it led to such a deep imposter syndrome that I ended up moving away from C#. While I could be just as productive in Windows as I was in Linux (even today), having to use “different” tools or run “special” commands to get something as basic as Ruby running on your OS constantly made you feel that you were running against the current.

      • dan@upvote.au
        link
        fedilink
        arrow-up
        1
        ·
        edit-2
        3 months ago

        Not sure how long ago you used C#, but these days the entire .NET Framework and C# compiler are open-source and cross-platform, and the latest versions of .NET have native ahead-of-time compilation (“Native AoT”) which lets you compile C# apps into a single executable file that can run on a system that doesn’t have the framework installed.

        Visual Studio is still Windows-only, but VS Code is available everywhere and has good C# support, and JetBrains Rider is great too.

        You can get PowerShell on Linux too. PowerShell is really nice once you get a feel for it. You pipe objects rather than strings, so there’s a lot you can do easily without needing to use grep/cut/sed to manipulate string streams.

        • EnderMB@lemmy.world
          link
          fedilink
          arrow-up
          1
          ·
          3 months ago

          I stopped around 2016, so it’s been a while, but it’s something I still really miss. I remember .NET Core being a thing, but didn’t see enough movement in places looking to transition away, so I jumped over to a different stack.

          • dan@upvote.au
            link
            fedilink
            arrow-up
            1
            ·
            3 months ago

            .NET Core was renamed to .NET in 2020 to signal that it’s the main framework now. It had mostly reached feature parity with the old .NET Framework by then. .NET Framework is still on version 4.6.x and isn’t receiving updates other than bug fixes, so a lot of people have migrated to .NET.

            C# keeps evolving and there’s a bunch of useful language features that have been added even just in the last few years.