/ Published in: C#
This is a means of applying a comment to a section of code so that it can be expanded or hidden as a group.
Use #pragma region in C/C++.
Use #pragma region in C/C++.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
// preprocessor_region.cs #region MyClass definition public class MyClass { public static void Main() { } } #endregion
URL: http://msdn.microsoft.com/en-us/library/9a1ybwek%28VS.71%29.aspx