I'm trying to insert data from a form in VC++ 2010 using pugiXML.
The issue is that whenever I try to enter the data, I get this error:
Error 1 error C2664: 'pugi::xml_node::set_value' : cannot convert parameter 1 from 'System::String ^' to 'const pugi::char_t *'
The code I'm using to insert the data is this:
descr.append_child().set_value(eClass->Text);
The documentation states that these functions accept string parameters, so I'm not sure why I'm getting an "expected char_t" error.