Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Stedfast <jeff@xamarin.com>2015-02-24 01:14:16 +0300
committerJeffrey Stedfast <jeff@xamarin.com>2015-02-24 01:14:32 +0300
commit9d7082371eacfb43699a180dc54fac888c8994ed (patch)
tree0929623cbeed51c68ce833e6b1188ade9fa254ff /main/src/addins/MonoDevelop.Debugger.Win32
parent17c97d08e7023bb96dea5e06974ed8259c3bc5e1 (diff)
bumped debugger-libs
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger.Win32')
-rw-r--r--main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/ArrayAdaptor.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/ArrayAdaptor.cs b/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/ArrayAdaptor.cs
index 2a2188e8ae..52bec05b19 100644
--- a/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/ArrayAdaptor.cs
+++ b/main/src/addins/MonoDevelop.Debugger.Win32/MonoDevelop.Debugger.Win32/ArrayAdaptor.cs
@@ -44,6 +44,11 @@ namespace MonoDevelop.Debugger.Win32
this.array = array;
this.obj = obj;
}
+
+ public int[] GetLowerBounds ()
+ {
+ return new int[array != null ? array.Rank : 0];
+ }
public int[] GetDimensions ()
{