Click to See Complete Forum and Search --> : passing a Bitmap* array and a Point array as reference


kkirtac
May 27th, 2006, 04:33 PM
hi, i want to pass a Bitmap* array : Bitmap* bMaps __gc[] and a Point array : Point sList __gc[] as reference to a function ,

void func(.. , ..) how can bMaps and sList can be referenced so that their original values can be manipulated inside the func method ?

darwen
May 29th, 2006, 07:40 AM
They already are - arrays are passed by reference in managed code.

Darwen.