Errors occur:
"You cannot declare a managed descryp in an unmanaged state"
"You cannot declare a managed nam in an unmanaged state"
Code (C ++ language):
class state { protected: System::String^ descryp; System::String^ nam; //Продолжение описания... };
How to fix? PS: It is inconvenient to use character arrays in my code.
System::String^
. most likely you needstd::string
- KoVadimstd::string
he swears (does not exist) - Anonimus#include <string>
at the top added? - KoVadim