在 C# 中,我们可以使用这样的东西:
MyClass c = new MyClass();
c.Properties.Add("another property", "another value");
我需要在 C++ 中执行此操作。我正在使用 VS 2012。有什么想法吗?
编辑:知道,我可以使用地图或任何列表将属性保存到对象,例如:
void ObjectProperty::addItem(string key, XProperty p)
{
_object[key] = p;
}