R
RedLars
Hi,
In a mix-mode dynamic library I perform the following code;
public __gc class foo
{
public:
void bar()
{
ULONG * array = new ULONG[10];
}
}
The array pointer will at some point be paaed to an unmanaged method.
Will the new operator in the above context always create a unmanaged
ULONG pointer?
Cheers
In a mix-mode dynamic library I perform the following code;
public __gc class foo
{
public:
void bar()
{
ULONG * array = new ULONG[10];
}
}
The array pointer will at some point be paaed to an unmanaged method.
Will the new operator in the above context always create a unmanaged
ULONG pointer?
Cheers