diff --git a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValue.cs b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValue.cs index b9538f8c50..b16044cdf3 100644 --- a/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValue.cs +++ b/src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValue.cs @@ -155,7 +155,7 @@ namespace Debugger { foreach(MethodProps m in Methods) { MethodProps method = m; // One per scope/delegate - if (method.Name.StartsWith("get_") && method.HasSpecialName) { + if (method.HasSpecialName && method.Name.StartsWith("get_") && method.Name != "get_Item") { yield return new PropertyVariable(debugger, method.Name.Remove(0, 4), method.IsStatic,