Whenever I try to debug my Windows Phone 7 C# app, I get the following message in the Output window:
A first chance exception of type 'System.OverflowException' occurred in mscorlib.dll
A first chance exception of type 'System.OverflowException' occurred in mscorlib.dll
A first chance exception of type 'System.InvalidOperationException' occurred in Microsoft.Phone.dll
…And then, App.xaml.cs opens up in VS (still in debug mode, where I can’t edit anything), and “System.Diagnostics.Debugger.Break();” is highlighted.
Why is this happening, how can I fix it, and how can I prevent it in the future?
Why it happened:
I had an
imagethat was used in MainPage.xaml. This image’s source’sCopy to Output directoryproperty was set toDo not copy, and as a result, the image failed to load and the app crashed.How to Fix It:
Change the
imagein question’s source’sCopy to Output directoryproperty toCopy AlwaysfromDo not copy.How it can be prevented:
Don’t fiddle with my image’s
Copy to Output directoryproperties.…and what caused the
System.OverflowException:My low disk space [I think] is what is causing the
System.OverflowExceptions, because these continued to pop up in my Output window after I fixed the problem. Read up onSystem.OverflowExceptions here.