Skip to content

Commit

Permalink
Fix DebuggerDisplay attribute
Browse files Browse the repository at this point in the history
Renaming privates in KeyValuePairs broke its DebuggerDisplay attribute.
  • Loading branch information
joshfree committed Jan 26, 2015
1 parent 9535924 commit d0d32ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace System.Collections
{
[DebuggerDisplay("{value}", Name = "[{key}]", Type = "")]
[DebuggerDisplay("{_value}", Name = "[{_key}]", Type = "")]
internal class KeyValuePairs
{
[DebuggerBrowsable(DebuggerBrowsableState.Never)]
Expand Down

0 comments on commit d0d32ea

Please sign in to comment.