monadmoproblems's comments

monadmoproblems | 4 years ago | on: Windows 11 may not be as popular as Microsoft had hoped

FWIW, as a lifetime Windows users, Windows 11 has finally made me switch to using Linux (Zorin OS) as my main system. I retain Windows 10 on a dual boot hard drive for some games but otherwise the switch has been much easier than I expected. Despite being a .Net developer, Microsoft has lost me as a customer for good.

monadmoproblems | 4 years ago | on: C# Raw String Literal Proposal

I've long wanted a more succinct way of writing implicitly typed arrays. Whenever you work with data directly in the code, for example when hacking on leetcode, you end you with lots of horrible nested arrays:

new [] {new [] {1, 2}, new [] {3, 4}};

Something like:

@[ @[1, 2], @[3, 4] ]

page 1