Convert From C# VS2010 - get_Item & set_Value in C++/CLI
Managed C++/CLI
1
Posts
1
Posters
0
Views
1
Watching
-
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 Again