BhaaL
BhaaL
Just checking, whats the colors do when we exceed 100%?
I wonder if this is the right place to do this (like, could it be inside those functions in case someone _else_ calls them?) or the right granularity (do we...
We could probably prompt the user if they want to do this, slap the UAC shield on the "yes" button, and if they chose to not do it (or it...
Any thoughts on methods that have more than 2 type parameters and omitting multiple trailing ones? _My personal feeling: No, since they're not optional like default-parameters_ With `M(...)`, is any...
Allowing fields and not just properties could get rid of a lot of boilerplate (ignoring validation for a second). But does this also work with additional parameters that are not...
Back with .NET Framework, I've often ran into situations where i wanted a `Math.Clamp(T value, T min, T max)`, `Math.Max(TimeSpan val1, TimeSpan val2)` or `Path.GetRelativePath(...)` for discoverability; but there was...
`init` methods would be cool for other things as well. There have been many issues, discussions etc. in the past that asked for a way to move common initialization code...
I'm not really sure if this is actually needed (at least in the proposed way)? My first thought for making helper types unlikely to be used by non-generator code would...
Hm, this sounds familiar...I saw similar behavior running static analysis while having the error list set to "Build & Intellisense". As soon as I selected a message/warning/error in the list...
Are any of those supposed to be anchored to start of line (`^`) and/or end of line (`$`)? Thats usually a thing I look out for at work, since many...