Moaid Hathot
Moaid Hathot
Hi @wilka, a similar feature is already supported but it is turned-off by default. It can be turned-on either globally for all dumps or per-dump: Globally: `DumpConfig.Default.TableConfig.ShowRowSeparators = true;` Per...
I know this isn't exactly like what you get from LinqPad, but I'm wondering how we can generalize this. LinqPad basically transposes the table. I will think about it and...
Hi @Joebeazelman, thanks for the suggestion! This will be easily achievable once I finish my current work on abstracting the table builder (in a week or two). Having said that,...
Great work @Hejle, thanks! I want to keep the descriptors as general as possible, so creating a new type of descriptor only for Json-types should be our last resort. A...
You can use named-parameters :) ```csharp myObject.Dump(members: membersConfig); ``` Having said that, I'm rethinking the current strategy for customizing the Dumps. It isn't ideal to say the least.