Yes, it’s nice and worth learning, especially if you try at both highly abstracted code and performance sensitive projects. Don’t get stuck thinking in c# though. Its brand of strict oop seems to be getting less popular these days.
Comment on I can't code.
voidf1sh@lemm.ee 1 year agoIs C# really that nice to work in? I’m looking to expand my horizons past JS now that I feel fairly comfortable with one language.
ale@lemmy.world 1 year ago
CIA_chatbot@lemmy.world 1 year ago
You can write fully functional code in C#! I pretty much made the switch over and it works great
TitanLaGrange@lemmy.world 1 year ago
C# is my primary language, so I’d certainly recommend it. It can be a little daunting to get into because it is a large ecosystem of tools, so you might want to watch some videos and keep things simple for a while.
For work I mostly use it for APIs for web sites, that might be a good place to start if you’re familiar with JS/TS front-end work. From there you might want to try Razor or Blazor for handling web UI work in C#. I’m not very experienced with that aspect of it, but it’s mostly been a positive experience (TBH I kind of prefer React, but I’d need to spend more time on the Razor/Blazor side to have a strong opinion).
The desktop development side in C# is kind of a mess at the moment. Maybe stick with web until you’re feeling pretty comfortable with the language.
loutr@sh.itjust.works 1 year ago
I’d go with Kotlin. It’s a really nice language, easy to learn if you already know JS (or even better, TS), and with KMM and Compose Multiplatform you can write apps which run natively on smartphones, browsers and PC/Mac.
Mr_Buscemi@lemmy.blahaj.zone 1 year ago
I absolutely loved learning C# a few years ago. I haven’t touched programming since my last C# class and I’m probably going to relearn it later this week.
CIA_chatbot@lemmy.world 1 year ago
It’s a genuinely nice language with tona of syntactic sugar. It’s fast, flexible and runs everywhere. Honestly my favorite language.
Other nice things about it is you can write object oriented code as well as functional style with it, so it even handles the style of code you prefer which is a lot harder to do with other languages. Finally it’s open source but also has deep pockets behind it so the language is constantly being pushed forward.