I\'d like to get ToString() to display for a class under my control in debug mode.
It\'d be nice if this was the first thing to show up when you hover over a varia
in the object Override the .ToString as follows:
public class MyObject { public int Property1{ get; set; } public string Property2{ get; set; } public string Property3 { get; set; } public override string ToString() { return Property3; } }
This will return Property3 as the ToString() value