Have a Uri be clickable in Dump(), also when an individual object is dumped
I defined a class that contains a Uri as a property (see below)
When I Dump() a list of objects of this class, the Uri is clickable and the browser directly runs the internet browser and directs it to the desired site. When I Dump() an individual object, the link is shown as a string and not clickable. I would like to have it vclickable as well.
Sample property definition code:
public Uri? ProjectItemLink
{
get
{
Uri? result = null;
if (_project != null)
{
result = new Uri( _project.Server + "/" + _project.Command + "/" + Key );
}
return result;
}
}
1
vote
Arno Tolmeijer
shared this idea