Hacker News new | ask | show | jobs
by CBarkleyU 676 days ago
I'm itching to try and deep dive into go as a C# dev. I'm getting sick of enterprise C#, even if it is .NET8

I guess the grass is always greener somewhere

2 comments

Worst part for me about Go is how exceptions are usually basically handled the way that they would be with a Result<T> in Rust, but without an actual Result<T> type. That and how nulls are handled, feels like the worst of both worlds.
Maybe startup C# feels very different; it feels much more like TypeScript and I more or less write C# like I would write TypeScript.