Lưu ý
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử đăng nhập hoặc thay đổi thư mục.
Cần có ủy quyền mới truy nhập được vào trang này. Bạn có thể thử thay đổi thư mục.
#pragma region
lets you specify a block of code that you can expand or collapse when using the outlining feature of the Visual Studio editor.
Syntax
#pragma region
name
#pragma endregion
comment
Parameters
comment
(Optional) A comment to display in the code editor.
name
(Optional) The name of the region. This name displays in the code editor.
Remarks
#pragma endregion
marks the end of a #pragma region
block.
A #pragma region
block must be terminated by a #pragma endregion
directive.
Example
// pragma_directives_region.cpp
#pragma region Region_1
void Test() {}
void Test2() {}
void Test3() {}
#pragma endregion Region_1
int main() {}