Mostly Client Side


There are two ways to write error-free programs; only the third one works. (Alan J. Perlis)

To #Region Or Not To #Region

February 17th, 2009

That truly is the question. A question that has surfaced today when a co-worker started bitching about the 4 layers of embedded regions in the code he was working on. If you’re not familiar with regions here’s a short explanation. In .NET you can surround your code with #Region and #Endregion to make it possible to hide those lines of code. The purpose is to make the code clearer by occupying fewer lines.

Read the rest of this entry »

Any ideas?