What is the proper syntax to obtain a dictionary key value pair when using trace points?
With a property like the following
public Dictionary<string, decimal> SomeDictionary { get; set; }
I am trying to set a break point with actions on the setter method to trace all incoming values. I've tried the following but none of them work.
{value} 'this gives me a count of how many items are in the dictionary
{value.Value} 'throws an exception, 'Value' doesn't exist
{value[Value]} 'the name 'Value' does not exist in the current context

