Mark your class with
[System.Diagnostics.DebuggerDisplay("{ToString()}")]
Test:
[System.Diagnostics.DebuggerDisplay("{ToString()}")]
class MyClass
{
private string _foo = "This is the text that will be displayed at debugging"
public override string ToString()
{
return _foo;
}
}
Now when you hover over a variable with the mouse it will show This is the text that will be displayed at debugging
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…