要通过 PropertyInfo 设置属性的值,可以按照以下步骤操作:
Type type = typeof(YourClassName);
PropertyInfo propertyInfo = type.GetProperty("PropertyName");
YourClassName instance = new YourClassName();
propertyInfo.SetValue(instance, "New Value");
通过以上步骤,就可以使用 PropertyInfo 设置属性的值。需要注意的是,如果属性是静态的,则可以将实例对象置为 null。