All These Things That I've Done

Apply the programming model to everyday programming problems
posts - 83, comments - 71, trackbacks - 4

My Links

News


View Gianluca Carucci's profile on LinkedIn

Tag Cloud

Archives

Post Categories

Image Galleries

Blogs

Links

Region in C++/CLI

Tutti ormai sanno che la direttiva #region di C# aiuta ad aumentare la leggibilità del codice e che la direttiva stessa non esiste direttamente in c++. Quello che forse non si sa è che le region sono utilizzabili con il C++ dal VS2005, attraverso la direttiva pragma. Ecco un piccolo snippet:

#pragma region Main

int main(array ^args)

{

Console::WriteLine(L"Hello World");

return 0;

}

#pragma endregion

Adesso non si hanno più scuse per non usare il c++/cli :)

Print | posted on domenica 29 gennaio 2006 11:52 | Filed Under [ C++ ]

Powered by:
Powered By Subtext Powered By ASP.NET