csharp 通过名称按名称设置财产

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 通过名称按名称设置财产相关的知识,希望对你有一定的参考价值。

var contact = _contactRepository.GetAll().Where(x => x.EmailOffice == emailAddr || x.EmailPrivate == emailAddr).FirstOrDefault();
if (contact == null)
{
    continue;
}
bool newValue = true;  // can be of any type
\!h PropertyInfo property = typeof(Contacts.Contact).GetProperty(PropertyName);
\!h property.SetValue(contact, newValue, null);
_contactRepository.Update(contact);

以上是关于csharp 通过名称按名称设置财产的主要内容,如果未能解决你的问题,请参考以下文章

csharp 在WPF VisualTree中按名称查找控件

设计师财产|列出名称和值

csharp 完整的财产

获取给定名称的属性的默认值

是否可以使用 HTML/Javascript 按名称启动应用程序?

Laravel 5.6 - 在控制器中按名称获取路由