Как в проекте C++ вызвать объект C#?
В общем решении есть 2 проекта, Один из которых является проектом c++, а другой-проектом c#.
В проекте c# есть класс, который выглядит следующим образом:
namespace CSLib { Class Person { Private string PersonName = string.Empty; Public Person (string personName) { PersonName = personName; } Public string GetPersonName () { Return PersonName; } } Person mPerson = new Person("Jack"); }
Итак, как c++ engineering называет mPerson.GetPersonName чтобы получить Джека
Что я уже пробовал:
#using "..\debug\CSLib.dll" using namespace CSLib;
I only know how to call the class of c# through c++, but not the method of calling his object method