Hi,
In .Net I usually want to write functions like this:
array1D myarr= functioncustom(...); //return array1D of integers
with define function as this:
array1D functioncustom(..){
array1D temp;//fill array
return temp;
}
Is there any problem if I keep this routine in c++?
I mean is the array recorded twice?
Thanks you!