I am generating a dll using c++-cli. The class in the dll looks like this:
ref class Locator
{
public:
Locator(int HP) : m_HP(HP) { }
~Locator()
{ }
Dictionary<String^, array< Byte >^>^ Locate(Dictionary<String^, String^>^ imgParms)
{ ..... }
private:
int m_HP;
How can I expose it to use it in c#? The class and the members are not being exposed in c#