show/hide this revision's text 3 Minor edit: grammar/spelling/case/punctation/etc.

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 {};
    Post Made Community Wiki by Community
show/hide this revision's text 2 added 5 characters in body

save a lot of typing on strings:

string.IsnullOrEmpty(

string.IsNullOrEmpty()

also 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 {};
show/hide this revision's text 1