Joseph Musser

Results 746 comments of Joseph Musser

If 7.1 had only one new capability, allowing `delegate` and `enum` constraints, I would be ecstatic!

@janjoostvanzon https://github.com/dotnet/csharplang/issues/104

> Also consider implementing `xor` patterns Why?

```cs if (neither x nor y are null) ``` 😁

`(x, y) = default;` still doesn't seem to work. 😢

I just discovered your `IDataReader.Parse` extension method (can't use, calls non-async Read()), and your `IDataReader.GetRowParser` extension method (can roll my own extension method with this!) so it looks like this...

That would have been nice today, in a different project!

I don't think NUnit should treat `default(ImmutableArray)` as though it was `ImmutableArray.Empty`. This will hide problems in my code. If we work against the way ImmutableArray was intended to differentiate...

This type of error is an occupational hazard of using default structs which themselves throw these exceptions when you call through IEnumerable interfaces on them, not unique to NUnit. We...

Perhaps Is.EquivalentTo could first check `EqualityComparer.Default.Equals` and return true if that returns true?