I've been writing one too many protected void OnThisEvent() and OnThatEvent() handlers lately, and what's bugging me the most is having to if (Event != null) every time. So I wrote a wee little helper giving me just a wee bit less code to write...
I had a small challenge today (yay!) when trying to localize some strings based on a boolean in the domain. Boolean's ToString() methods only returns the static strings "True" and "False", hence String.Format(MyLocalizedString...
I've been sure the ASP.NET theme framework fixed the url's of pictures with equal paths under the application as the themes. Looks like it doesn't. The only way to theme images is to have a skin file in each theme. Why would I want to duplicate...