#region
is an interesting instruction that tells Visual Studio how to wrap the code into 'meaningful' chunks. In larger classes, especially, those with several interfaces it is particularly helpful.
1 2 3 |
#region IParameterInspector //blah blah #endregion |
Pretty handy if you ask me. The downside is, and I have seen this already a couple of times, is that some engineers use them as an excuse to write poor quality code.