Given the code

    [Test]
    public void Test1()
    {
        var a = new A();
        a
            .Method1()
            .Method2();
    }

is it possible to set a breakpoint so that execution pauses after Method1() has executed, but before Method2 without going to the definition of Method2 and putting a breakpoint there? When I do it, the breakpoint appears at the 'a'.

link|improve this question

Another good reason not to violate the Law of Demeter :-) – Jonas H May 10 '11 at 11:12
1  
Another reason not to use fluent interfaces – mcintyre321 May 10 '11 at 12:10
feedback

2 Answers

up vote 0 down vote accepted

No, the debugger's unit of executable code is a statement. There are only two in the method body in your snippet. Post feature requests to connect.microsoft.com. It's going to be a hard sell, it is not technically impossible but a potentially heavy re-engineering effort.

link|improve this answer
1  
You can actually step through to that stage using "f11 - step into", so it's probably not too hard for them to do. – mcintyre321 May 10 '11 at 12:12
feedback

you can't set a breakpoint there, but you can set your breakpoint on the whole statement, and then use the "Step into Specific >" command on the right-click menu (Debug.StepIntoSpecific) to step into Method2().

you can also do repeated step in/step out to step through the indivdual method calls of the compound statement.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.