I am trying to do something like this on an indexer class:
[DebuggerDisplay("Debug: {_Items[index]}")]
public override string this[byte index]
However, when the debugger evaluates the string, the message in the value field is "index does not exist in the current context".
Is there some way to use the DebuggerDisplay attribute to controle the display of a single element within an indexer class??