#using
using namespace System;
ref class Flower {
private:
String^ name;
int petals;
public:
Flower(String^ flowerName, int petalCount) {
name = flowerName;
petals = petalCount;
}
String^ GetInfo() {
return "Flower: " + name + ", Petals: " + petals;
}
};
int main() {
Flower^ rose = gcnew Flower("Rose", 5);
Console::WriteLine(rose->GetInfo());
return 0;
}
это ref class flower{....,
и в ошибке пишет, что не допускается использование массива класса управляемый