You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
class X : Y {
|
|
int foo1;
|
|
#pragma region something
|
|
int foo2 = 2;
|
|
#pragma endregion
|
|
int foo()
|
|
{
|
|
|
|
#pragma region something else
|
|
int foo3 = 3;
|
|
#pragma region nested
|
|
int foo4 = 0;
|
|
#pragma endregion
|
|
int foo5 = 0;
|
|
#pragma endregion
|
|
}
|
|
|
|
}
|
|
|
|
|