Browse Source

Indexers not shown in debugger tooltips (Forum-7247)

git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/2.0@1378 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61
shortcuts
David Srbecký 20 years ago
parent
commit
49cb637e82
  1. 2
      src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValue.cs

2
src/AddIns/Misc/Debugger/Debugger.Core/Project/Src/Variables/ObjectValue.cs

@ -155,7 +155,7 @@ namespace Debugger
{ {
foreach(MethodProps m in Methods) { foreach(MethodProps m in Methods) {
MethodProps method = m; // One per scope/delegate 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, yield return new PropertyVariable(debugger,
method.Name.Remove(0, 4), method.Name.Remove(0, 4),
method.IsStatic, method.IsStatic,

Loading…
Cancel
Save