Samsung / netcoredbg

NetCoreDbg is a managed code debugger with GDB/MI, VSCode DAP and CLI interfaces for CoreCLR.
MIT License
836 stars 103 forks source link

netcoredbg does not Utilize DebuggerDisplayAttribute #142

Open rudiejd opened 1 year ago

rudiejd commented 1 year ago

While debugging, I noticed that, unlike Visual Studio/VSCode, netcoredbg does not utilize the DebuggerDisplayAttribute to pretty print objects while debugging. This is especially useful for dealing with large objects from libraries (e.g. mocks) where it is unwieldy to sort through all attributes. Is there any way that this feature could be implemented?

viewizard commented 1 year ago

DebuggerDisplayAttribute not supported for now and probably will not be implemented in near future, since require special parser for expressions and expression evaluation we don't have implemented yet.