I have to use a c++ DLL in c# and I have to import in my c# program this function defined in the c++ DLL:
void rtdGetSkillsetListResult(bool success, const std::list <skillset_info> skillsetList)
How can I "translate" in c#
const std::list <skillset_info>
where skillset_info has defined in c++ dll with the following structure:
struct skillset_info
{
std::string code;
bool standby;
};
Thanks a lot!