Double higgle[] = { 123.123, 456.456 };
// implicit interior gc pointer
Double *jiggle = &higgle[0];
Quote:
>-----Original Message-----
>Whoops, I now realize that in the question I
>posted, "higgle" is itself a pointer to an object. What
I
>meant was that "jiggle" is supposed to be s pointer to
>that pointer. Sorry...
>>-----Original Message-----
>>Please forgive a basic question from a .NET newcomer.
>>What is the syntax for declaring a pointer to an object
>of
>>type double __gc[]? That is, if I have a managed array:
>>Double higgle[] = { 123.123, 456.456 };
>>and I want to create a pointer to this object:
>>jiggle = &higgle;
>>how do I declare jiggle? Thanks!
>>.
>.