[Mono-dev] [PATCH] Enable stepping into remotinginvoke-wrapped methods
Cedric Vivier
cedricv at neonux.com
Fri Oct 17 12:50:23 EDT 2008
Hi,
Currently it is not possible to step into a method of an object
deriving MarshalByRefObject, as in the example below
debugger cannot step into Bar() from Main().
>>
using System;
public class Foo : MarshalByRefObject {
public void Bar() {
Console.WriteLine("foo!");
}
private static void Main() {
var foo = new Foo();
foo.Bar();
}
}
<<
Please review the attached patch that enables StepInto for
remotinginvoke-wrapped methods.
Regards,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: remoting-wrapper.patch
Type: text/x-diff
Size: 2674 bytes
Desc: not available
Url : http://lists.ximian.com/pipermail/mono-devel-list/attachments/20081018/ebf89b93/attachment-0001.bin
More information about the Mono-devel-list
mailing list