System::Reflection::PropertyInfo::SetValue method

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)
ParameterType描述
objSystem::SharedPtr<System::Object>Object 用于写入属性的对象。
valueSystem::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)
ParameterType描述
objSystem::SharedPtr<System::Object>Object 用于写入属性的对象。
索引器System::SharedPtr<System::Object>这些是索引属性的可选索引值。对于非索引属性,此值应为 null。
valueSystem::ArrayPtr<System::SharedPtr<System::Object>>要设置的属性值。

另见