Managed C+++ & Windows Forms, Array

Started by
1 comment, last by colinolivant 14 years, 11 months ago
Hey does anyone have any experience with managed c++ and windows forms? I want to create a array of System::Windows::Forms::PictureBox^ but as its managed c++ I need to use something like System::Collections::ArrayList ?? Has anyone ever created a array of objects before. If you have an example would save me a lot of time trying to work out the best method. Thanks in advanced C.
Advertisement
Do you mean C++/CLI? Managed C++ is a different language. If you do then you create managed arrays of managed handles like so:
ref class MyClass {};int main() {   array<MyClass ^> ^ MyArray = gcnew array<MyClass ^>(100);}


Thanks for you help :)

This topic is closed to new replies.

Advertisement