MoaidHathot / Dumpify

Adding `.Dump()` extension methods to Console Applications, similar to LinqPad's.
MIT License
959 stars 40 forks source link

Implement IncludeVirtualMembers in MembersConfig #27

Closed Empiree closed 5 months ago

Empiree commented 5 months ago

Resolves https://github.com/MoaidHathot/Dumpify/issues/20 (Virtual Member)

Implemented the ability to include/exclude virtual members in MembersConfig.

By default, virtual members will be displayed.

Tested both in the global configuration via DumpConfig.Default.MembersConfig.IncludeVirtualMembers and by passing the config directly to the Dump() method.

I've also written xUnit tests to check the inclusion of virtual members, hopefully they will be useful.