我正在使用 c++-cli 生成一个 dll。dll 中的类如下所示:
ref class Locator
{
public:
Locator(int HP) : m_HP(HP) { }
~Locator()
{ }
Dictionary<String^, array< Byte >^>^ Locate(Dictionary<String^, String^>^ imgParms)
{ ..... }
private:
int m_HP;
如何公开它以在 c# 中使用它?类和成员没有在 c# 中公开