Hi,
I wish to convert from c# for the following codes contain get_Item & set_Value convertion in C++/Cli.

Code:
   
private static void SetWIAProperty(IProperties properties, object propName, object propValue)
{
        Property prop = properties.get_Item(ref propName);
        prop.set_Value(ref propValue);
}
Any guidences will be helpful.

Thanks