Hello,
I have Class name as MyClass and created multidimesional array of object.
Example is given below.
// clr_array.cpp
// compile with: /clr
ref class MyClass {};
int main() {
array<MyClass ^> ^ MyArray = gcnew array<MyClass ^>(100);
}
I have problem, how to delete this array of objects.?
I have Class name as MyClass and created multidimesional array of object.
Example is given below.
// clr_array.cpp
// compile with: /clr
ref class MyClass {};
int main() {
array<MyClass ^> ^ MyArray = gcnew array<MyClass ^>(100);
}
I have problem, how to delete this array of objects.?
Comment