Your app has entered a break state, but there is no code to show because all threads were executing external code (typically system or framework code)

前端 未结 20 1891
孤独总比滥情好
孤独总比滥情好 2020-12-10 09:56

Visual Studio 2017 breaks in debug mode and displays the message:

Your app has entered a break state, but there is no code to show because all threa

20条回答
  •  悲&欢浪女
    2020-12-10 10:38

    1. First check all your common exception setting run time in your visual studio so that you can get the actual error.

    1. During loading you application check that is their any method which is throw new NotImplementedException();

    In my case i use INavigationAware which was throw new NotImplementedException(); i just remove those

    1. In you all project update all from nuget.

    2. Clean and rebuild you project.

提交回复
热议问题