Break points not responding.

Morning all,

can some one point me in the right direction as to why my break points work only after I have done a complete rebuild of my solution.

I am using VS2005 c#. Plus when they do finally work pressing the step into button (F11) do not go to the method.

 

Wayne

 

This may help:

 MemberShip newMembership = new MemberShip();
 membershipId = newMembership.CreateMember();

I am placing a breakpoint on the CreateMember call, but pressing F11 on this does not go into the Membership class.



Answer this question

Break points not responding.

  • Link8312

    Hi Wayne,
    Make sure if MemberShip is a separate project then its compilation configuration is set to Debug if you are directly referencing to the MemberShip project or if you have added dll of MemberShip as reference then make sure that the dll is built with debug option.
    More if you are referencing MemberShip project no change will be available in intellisence until you built the project that is calling MemberShip.



  • Break points not responding.