save
This saves a lot of typing on strings:
string.IsNullOrEmpty()
also Hidden
Also a hidden gem using events:; when declaring an event, a nice way to make sure you never need to check if it's null, is by initializing it to an empty anonymous delegate at declaration time:
public event EventHandler MyASimpleEvent = delegate {};
