I can’t debug my windows phone 7 project.while windows phone emulator is starting, the code stop on System.Diagnostics.Debugger.Break();
How can i debug my project?
private void Application_UnhandledException(object sender, ApplicationUnhandledExceptionEventArgs e)
{
if (System.Diagnostics.Debugger.IsAttached)
{
// An unhandled exception has occurred; break into the debugger
**System.Diagnostics.Debugger.Break();**
}
}
The problem is solved. the problem occur because of phone gps while determine the current location.Thanks everyone for your help.