I have two assemblies : A.dll which has a reference to B.dll.
And B.dll uses reflection to call some methods from A.dll.
My question is that any breakpoints I use on B.dll when debugging A.dll will be hit?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
As long as the debugger was able to find a matching pdb file the breakpoints are being hit.
BTW: In the scenario you described A.dll is not loaded via reflection. You merely use reflection to call a method in the already loaded A.dll.