public class myClass{#region Private Members
#endregion#region Public Properties
#endregion
#region Constructors
#endregion#region Public Methods
#endregion}
// Some where in the fields sectionprivate int someVariable;
// I also refrain from// declaring variables outside of the constructor
// and some where in the properties section I dopublic int SomeVariable{get { return someVariable; }set { someVariable = value; }}