Appel d'une dll C++ - Problème de récupération d'un vecteur de structure
J'ai une dll C++ (que je peux modifier à ma convenance) avec la signature suivante:
Code:
1 2 3
| bool analyzeXml(const std::string& inXmlFilePath,
const std::string& lang,
std::vector<TermAnalyzed>& outTerms); |
où TermAnalysed est la structure suivante:
Code:
1 2 3 4 5 6 7 8
|
struct TermAnalyzed
{
std::string word;
int position;
int length;
bool unknowWord;
}; |
Comment puis-je en C# récupérer le vecteur de termes analysés?
Pouvez vous m'aider? :help:
Merci.