Not able to step into...again?

B

Brett Romero

My.EXE project does a file reference to a A.DLL. I have the PDB for
A.DLL. A.DLL inherits from B.DLL, which I file reference and also have
the PDB for. The method I'm referencing in my.EXE is a type of A but
derives from B. When the debugger gets to this method and I step into,
it skips right over the code.

Any idea why it isn't stepping into?

Thanks,
Brett
 
N

Nick Hounsome

Brett Romero said:
My.EXE project does a file reference to a A.DLL. I have the PDB for
A.DLL. A.DLL inherits from B.DLL, which I file reference and also have
the PDB for. The method I'm referencing in my.EXE is a type of A but
derives from B. When the debugger gets to this method and I step into,
it skips right over the code.

Any idea why it isn't stepping into?

DebuggerStepThroughAttribute?
 
P

Paul Kline

Brett said:
My.EXE project does a file reference to a A.DLL. I have the PDB for
A.DLL. A.DLL inherits from B.DLL, which I file reference and also have
the PDB for. The method I'm referencing in my.EXE is a type of A but
derives from B. When the debugger gets to this method and I step into,
it skips right over the code.

Any idea why it isn't stepping into?

Thanks,
Brett
A possiblity would be if one of the DLL's is unmanaged code, if so you
need to check the option in VS2005 to debug unmanaged code.

Paul
 
B

Brett Romero

The thing is, this use to work just fine. Now I can't step into any
method in another DLL.

Brett
 
B

Brett Romero

This is working now. I had to get latest on all of the DLL projects,
build them locally and reference the DLLs. It's as if the PDB files I
had suddenly became obselete.

Brett
 
B

Brett Romero

This stop working again : (

I have now included one of the DLLs as a project rather than file
reference. Sometimes I can step into a method and sometimes not. Any
one have "any" what gives?

Thanks,
Brett
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top