• @danA
    link
    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
      13 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.

      • @danA
        link
        13 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.