Mark's Stuff

My Foray Into Weblogging. Using this to store interesting items for later review.

Tuesday, May 16, 2006

.Net code regions to organize procedures

Forms
#region Controls, Constructors, Destructors, other common form code

#endregion
#region Class level application variables
#endregion
#region Properties
#endregion
#region Events
#endregion
#region Methods
#endregion

Class Library, WebService
#region Constructors, Destructors, other generated code

#endregion
#region Class level application variables
#endregion
#region Properties
#endregion
#region Methods - Public
#endregion
#region Methods - Private
#endregion

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home