System::Reflection::PropertyInfo::SetValue 方法

PropertyInfo::SetValue(System::SharedPtr<System::Object>, System::SharedPtr<System::Object>) method

将属性值设置到特定对象。

void System::Reflection::PropertyInfo::SetValue(System::SharedPtr<System::Object> obj, System::SharedPtr<System::Object> value)
参数类型描述
objSystem::SharedPtr<System::Object>Object 用于写入属性的对象。
System::SharedPtr<System::Object>要设置的属性值。

另见

PropertyInfo::SetValue(System::SharedPtr<System::Object>, System::SharedPtr<System::Object>, System::ArrayPtr<System::SharedPtr<System::Object>>) method

将属性值设置到特定对象。

void System::Reflection::PropertyInfo::SetValue(System::SharedPtr<System::Object> obj, System::SharedPtr<System::Object> value, System::ArrayPtr<System::SharedPtr<System::Object>> indexer)
参数类型描述
objSystem::SharedPtr<System::Object>Object 用于写入属性的对象。
索引器System::SharedPtr<System::Object>这些是索引属性的可选索引值。对于非索引属性,此值应为 null。
System::ArrayPtr<System::SharedPtr<System::Object>>要设置的属性值。

另见