Welcome to Pete Brown's 10rem.net

First time here? If you are a developer or are interested in Microsoft tools and technology, please consider subscribing to the latest posts.

You may also be interested in my blog archives, the articles section, or some of my lab projects such as the C64 emulator written in Silverlight.

(hide this)

Monthly Archives:

  • More on Comparing Nullable Types and Generics

    If you recall from yesterday's blog entry, I was having some problems trying to find a way to compare some generics which may contain nullable types. My thanks go to Dinesh and his colleagues for solving this problem for me. Here's the new code; it's much simpler than the old code.   protected void SetProperty<T>(ref T currentPropertyValue, T newValue)  { &...