Redimensionando Array em C++/CLI
by paulorb on jun.29, 2012, under C++/CLI
Dica rápida:
* Redimensionando Array em C++/cli
// Create and initialize a new string array. array<String^>^myArr = {L"The", L"quick", L"brown", L"fox", L"jumps", L"over", L"the", L"lazy", L"dog"}; // Resize the array to a bigger size (five elements larger). Array::Resize(myArr, myArr->Length + 5);