Csharp/CSharp Tutorial/Preprocessing Directives/region

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

region

The #region and #endregion directives define a region that will be expanded or collapsed when using outlining in the Visual Studio IDE.

The general form is shown here:


#region region-name 
 // code sequence
#endregion