79150947

Date: 2024-11-02 15:14:21
Score: 1
Natty:
Report link

When you pin a property in the Visual Studio debugger, it becomes the prioritized display item, effectively overriding [DebuggerDisplay]. This behavior lets you focus on specific fields but can indeed hide the custom display you set up with [DebuggerDisplay]

on the sceen i've pinned a Content property that's why Debugger shows it like Content = {....} instead of expected [DebuggerDisplay("RestResponse {ToString()})]

enter image description here

Reasons:
  • No code block (0.5):
  • Starts with a question (0.5): When you
Posted by: Artem Vertiy