Possible Duplicate:
Visual Studio: Is there a way to navigate to real implementation of method behind an interface?
When debugging in VS I often use the F12/Goto Definition to get to code as opposed to actually stepping into it.
When I'm dealing with a concrete class it's fine but when I'm dealing with an interface I end up not jumping to the method definition (in my mind this is the code that runs) but the method signature in the interface.
Is there any way to tell the debugger to jump me to the actual implemenation of the method as opposed to the definition of the method signature in the interface? I would think the debugger should know this at runtime, right?