Zev Spitz

Results 225 comments of Zev Spitz

I'm still confused. Can MUI components be filtered out of the Dev Tools or not? If yes, how?

This is a bug, but not for the reasons you note. The `ToStringWriterVisitor` and `DebugViewWriterVisitor` were only ever meant as a re-implementation of the built-in representations, which allows [mappings between...

Alternatively, you might want to consider [inheriting from `DebugWriterVisitor` and overriding `WriteExtension`](https://github.com/zspitz/ExpressionTreeToString/wiki/Extensibility-and-plugin-mechanism).

Referenced on SO: https://stackoverflow.com/q/77179713/111794

Would this also work with strings, as in VB.NET? ```csharp var s = GetArbitraryString(); switch (s) case >= "n": Console.WriteLine("Past the midpoint"); break; case "m" to "n": Console.WriteLine("Starts with 'm');...