可能吗?用反思或其他方式?
解决方法
如其他所述,如果您需要,您将面临设计问题.现在,如果你想知道这是否可能只是为了知道,或者如果没有其他方法来做到这一点,那么在一个非常小的
helper library和一个扩展方法的帮助下确实有可能.
请考虑以下代码:
class Person { int age; string name; public int Age { get { return age; } } public string Name { get { return name; } } } // ... using Mono.Reflection; using System.Reflection; // ... Person person = new Person (27,"jb"); PropertyInfo nameProperty = typeof (Person).GetProperty ("Name"); FieldInfo nameField = nameProperty.GetBackingField (); nameField.SetValue (person,"jbe");
使用此代码,您可以使用属性获取属性的后备字段,并为后备字段分配一个新值.您可以阅读有关implementation的更多详细信息.
另请注意,它仅适用于简单属性,例如:
public int Age { get { return age; } } public string Name { get { return name; } set { name = value; } } public double Velocity { get; private set; }