Tim Cassell

Results 245 comments of Tim Cassell

Is NUnit XML native support still in the works?

As a followup, it might be nice to display the progress in the taskbar, but I only see the API available in .Net Framework. Not sure if there's an equivalent...

I'm not sure how to generate an uncatchable `AccessViolationException`, but you could throw an uncatchable `StackOverflowException`: ```cs void Kill() { Kill(); } ```

I believe if you manually throw a `StackOverflowException` it can be caught. It will only be un-catchable when the runtime throws it. At least that's what I observed when testing...

@Thaina I do like how that reads better, but I'd prefer a pipe operator `|>` rather than `into` akin to the pipe operator proposal https://github.com/dotnet/csharplang/discussions/96. Also, how would that work...

@VBAndCs #3086 should be what you're looking for. Expression blocks should completely supersede directly invoked lambdas. From LDM, it seems to be on the roadmap for C# 11, and it...

If you read further down into the issue thread, lots of people expressed concerns over the OP's suggested syntax. The more popular syntax is akin to `var x = ${...

@AnthonyMastrean That has been around since .Net Framework 4.5. But it doesn't help this situation, because that's only useful on the callee side, and we're on the caller side. We...

> The host process starts new benchmarks by using it's own exe path, but with a different set of arguments that are recognized and translated to "find selected benchmark in...

It seems dangerous to encourage users to use `IHost`. That looks like it should actually be internal, and is only public for the code-gen project to use, especially if we're...