/ Published in: C#
URL: http://msdn.microsoft.com/en-us/library/9a1ybwek%28VS.71%29.aspx
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++.
Expand |
Embed | Plain Text
// preprocessor_region.cs #region MyClass definition public class MyClass { public static void Main() { } } #endregion
You need to login to post a comment.
