I have a WPF application. When i compile and run with "Step into new Instance", the observations are as follows:
- The Main() method is hit
- I can not jump into "calling the new instance of the App" with F11. That line is skipped and the next one is hit.
- The Run() method is hit. It keeps hanging there for around 30 seconds, then the output windows says: Thread'... has exited with code 0 (0x0).
the Main method is as follows:
public static void Main(){
App app = new App();
app.Run();
}
I would very much appreciate some advise on this one. Thanks in advance :)
Forgot to mention, this is part of a big project with multiple windows. I just wrote the entry point of the program because that's where the error happens. It used to work well in the past. However now, for reasons i don't know, it stopped working as i described above. Thx