14

#pragma markXCodeにあるのと同等のVisualStudioプリプロセッサはありますか?これが私が尋ねる理由です:

これはWindows上にあります。

ここに画像の説明を入力してください

これはMac上にあります。

ここに画像の説明を入力してください

#regionはC#で知っていますが、C++で同様の機能はありません。

2013年12月3日編集

#pragma region adds collapsibility to code, but doesn't add sections to VS's method listings, which is essentially what I'm looking for. I much prefer to jump to methods quickly using the function listing, especially in large classes/files where scrolling through a forest of code is a no-no; the "sectioning" really shines in such cases.

I was really expecting Visual Studio to have this kind of functionality, seems like something pretty basic. Pretty sure Eclipse lets you do this with the Coffee-Bytes plugin too.

4

3 に答える 3

4

使用できます#pragma region

#pragma region foo
// some code ...
#pragma endregion foo
于 2013-03-12T13:22:52.603 に答える