13
ODXT
6y

TL;DR C# has changed quite a bit since the last time I used it.

So I'm working on a personal project, it's written in C#. When I needed to run a task on a separate thread. It has been years since the last time I worked with C#, so I googled it.

Me: "Async? Await? Task? This looks pretty fucking useful. When was this added?"

*Googles a bit*
Return .NET 4.5 in 2012. Current version 4.7.1.

Me: "What?! Last time I checked they were still in .NET 4. Shit!"

I've got a bit of catching up to do.

Comments
  • 1
    As someone who's just getting started and doesn't have much experience, c# is awesome, letting me do complex stuff in a rather easy and consistent manner.

    With async just keep in mind that return types work a little differently.
  • 2
    @Finnim
    Don't worry, I just became an expert. All joking aside though, C# is elegant as fuck.
Add Comment