I\'ve been using the Concurrency Runtime in a C++ static library, and recently wanted to use this library in a C++/CLI project, to take advantage of the Windows Form designe
I'm not sure how detailed your concurrent needs are, but OpenMP works fine (i.e., you can combine options /clr and /openmp)
/clr
/openmp
array^ model ....; #pragma omp parallel for for(int i=0;iLength;i++) { model[i] = ComputeModelFor(i); }