Mikk

Results 4 issues of Mikk

This piece of code throws System.MissingMethodException: 'method not found: Abs' ``` public class ExpressionContext { public BigInteger Abs(BigInteger x) { return BigInteger.Abs(x); } } private static void Test() { Expression...

I can't use records to do dependency injection into handlers. A recurssive dependency exception is thrown. I have reduced it down this basic code: ```csharp using System; using System.Threading; using...

When label files are created it would be nice if multi-word class names like "adhesive tape" and "brown bear" be in quotes or space gets replaced with underscore. Otherwise it's...

It's inconvenient to do keyboard interruption twice because the video capture thread keeps on working when main thread is stopped. One quick solution is to make the video capture async...