Hello all, a lot of times I see C# code written without the use of #region and #endregion, I'm just wondering if there is any reason not to use it, and what are your thoughts on using it.
I think it's an amazing feature that lets you clearly identify groups of functions/classes with similar functionality.
i.e.,
#region PROGRAM_INIT
//Functions to initialize variables, etc.
#endregion
#region STRUCTION
//ctor
//dtor
#endregion
#region EVENTS
//Program events go here.
#endregion