Hi, please, what is the fastest way to initialize an std::vector< Object^ > from an Platform::Array< Object^ >
EDIT :
I think I just found an answer to my question.
// Construct a std::vector. Two options.
vector<int> v1(begin(arr), end(arr));
vector<int> v2(arr->begin(), arr->end());