0
0to60
I can declare and initialize a managed array of managed types like this:
System::Object* array __gc[] = {...}
Now, what do I do if I wanna reset that array to something else without
redeclaring it? I can't seem to just say something like
array = new __gc[] = {...}
or
array = {...}
How do I do this?
System::Object* array __gc[] = {...}
Now, what do I do if I wanna reset that array to something else without
redeclaring it? I can't seem to just say something like
array = new __gc[] = {...}
or
array = {...}
How do I do this?