bradmarder

Results 5 issues of bradmarder

I currently use this approach and it works fine ```c# var items = new AsyncProducerConsumerQueue(); while (await items.OutputAvailableAsync()) { var item = await items.DequeueAsync(); } ``` I was wondering if...

I don't quite understand what is going on with the following decompiled expression. `this => IIF(this.HasBar, this.Posts.Any(x => True), (this.HasBaz AndAlso this.Posts.Any((x => True ?? x => True))))` More specifically,...

Worked fine with 1.71. Broken with the 1.72 patch. Note, this only seems to be broken with webpack.

bug
compatibility
ie11

I didn't actually hit a stackoverflow exception after running this code for like an hour. I assume eventually it will occur. Something is causing a circular dependency. I spent some...

The following code works as expected. ```csharp public record Blog(List Posts); public record Post(int Id); public record BlogDto(int Id); [Mapper(RequiredMappingStrategy = RequiredMappingStrategy.Target)] public static partial class BlogMapper { public static...

bug