要通過 PropertyInfo 設置屬性的值,可以按照以下步驟操作:
Type type = typeof(YourClassName);
PropertyInfo propertyInfo = type.GetProperty("PropertyName");
YourClassName instance = new YourClassName();
propertyInfo.SetValue(instance, "New Value");
通過以上步驟,就可以使用 PropertyInfo 設置屬性的值。需要注意的是,如果屬性是靜態的,則可以將實例對象置為 null。