I was hoping someone could help me return a dynamic array from a C++ Dll to VB.
Here's a simple example.
Code:
double * TestFunction(int count)
{
double* temp = new double[count];
for (int i = 0; i < count; i++){
temp[i] = i;
}
return temp;
}
Basically I want to return...
Leave a comment: