在vc ++中声明结构数组时遇到麻烦
public: value struct Product {
public:
String^ name;
String^ description;
String^ category;
int stock;
float price;
};
array<Product^>^ managedArray = gcnew array<Product^>(10);