JeppeSN

Results 2 comments of JeppeSN

Please fix. In an expression like: ```csharp X?.Y.Should().Be(expected); ``` it is absolutely true that the entire "chain" `.Y.Should().Be(expected)` will be skipped if `X` is null. In particular, `Should` and `Be`...

@timcassell, All right, my question was based on general ignorance, and this is clearly much more complex than I had imagined. There are likely a variety of different ways BenchmarkDotNet...