Zdenek Havlin

Results 16 comments of Zdenek Havlin

Additionally @aliriocastro, how would `TryPick` look for bigger type arity, let's say `OneOf`? Would you return two reminders, or this should be implemented just for arity = 2? (I'm struggling...

@jamesbascle if I understand it correctly (I'm struggling to find anything related to this in DiscU), proposal for `OneOf` is either: Implement every combination of Tn (this won't scale and...

Re first example, it could just be: ```csharp if (x.TryPickT0(out Success s)) { } else if (x.TryPickT1(out Error1 e1)) { } // ... ``` ... right? Just keep trying to...

@eddit0r Sorry for such delay in response, completely missed notification. From how you described the issue, I'm not really sure what could be the cause - template seems to be...

@eddit0r I realized I might misunderstand your issue regarding replacing. I think what you see is intentional. Let's say I log message with this template: `Request to {RequestUri}, Status: {StatusCode},...

@eddit0r, so after all it's not issue of library - it's by design of Serilog `JsonFormatter` and `CompactJsonFormatter` (which you are using). In order to get placeholders replaced, please use...