Coding

A 3-post collection

.NET Technical Guide: Reflection

Reflection is an API that allows its user to view and access all properties, fields, constructors, methods, and metadata for any class supplied to it at runtime (as opposed to compile time).  Among other things, Reflection also allows its consumer to call these methods as well as get or set »

Optimizing Web Application Performance

Web performance is often seen as esoteric, difficult, and best left to specialists. As a result, performance optimization is too often relegated to the end of the development lifecycle. Because of this oversight, poor design decisions and a lack of time to fix them lead to sites that are quite »

Watch out how you format that navigation string

Related Platforms: Silverlight and Windows Phone 7 The Problem I’ve noticed that the constructor on my MainPage was being called again, when I navigated back to the MainPage using the NavigationService. NavigationService.Navigate("/Views/MainPage.xaml"); .csharpcode, .csharpcode pre { font-size: small; color: black; font-family: consolas, "Courier New", courier, monospace; »