Posts from 2012

4 posts

Zip File Classes Finally Available in .Net 4.5

Right now .Net 4.5 is still in beta, but I noticed something that will make developers who must interact with zip files happy: .Net 4.5 will have native support for dealing with zip files. Up until now, the System.IO.Compression namespace only had support for GZipStream and DeflateStream. This post explores how working with SharpZipLib now compares to working with what is upcoming in the .Net 4.5 framework.

Continue reading Zip File Classes Finally Available in .Net 4.5

Pretty IPropertyNotifyChanged Declarations for Windows Phone

The Problem I’ve been doing a bit of WPF/ Windows Phone development. Usually INotifyPropertyChanged declarations for properties are really ugly. The big problem is that the INotifyPropertyChanged interface relies on strings, which don’t refactor well. I’m also using the fantastic MVVM Light Toolkit, which makes life a lot easier when doing Windows Phone development. MVVM…

Continue reading Pretty IPropertyNotifyChanged Declarations for Windows Phone