Tag Archives: examples

Handling application crashes

I’ve struggle for a while now trying to come up with a good way to handle app crashes in my Windows Phone applications. The problem I have is that in the Application_Unhandled event handler, there’s really no good way to pop up a task (i.e.: an email compose task) to send off debugging information. There… Read More »

Mobile != NetworkConnected

Unlike all the coding you’ve been doing for a desktop, when writing for mobile applications (i.e.: not becoming a COBOL programmer) you need to keep in mind that your end user won’t always have network connectivity. “Well duh, just wrap your stuff in an if statement” Right, so do you really want your code to… Read More »