Hacker News new | ask | show | jobs
by hardware2win 1347 days ago
Dont use Mono

Also I think you are giving nullable ref types too much credit

1 comments

I don't think you're giving them enough credit.

Having the type system be able to tell you that you may have a null reference exception in a complicated code base is magic. I've inherited bad code bases and refactored them to use nullable references and watched lots of bugs fall out.

I'd rather use Result<T> everywhere