C
Chris
Hi,
what is the syntax for passing a pointer to a managed array of pointers in
C++.NET ?
Here's what I try :
void GetArr(Person ** parr __gc[]) ==> compiler error
{
*parr = new Person* [2];
}
main()
{
Person *p __gc[];
GetArr(&p);
}
thanks
Christian
what is the syntax for passing a pointer to a managed array of pointers in
C++.NET ?
Here's what I try :
void GetArr(Person ** parr __gc[]) ==> compiler error
{
*parr = new Person* [2];
}
main()
{
Person *p __gc[];
GetArr(&p);
}
thanks
Christian