C#中有没有办法用反射来设置对象属性?
例如:
MyObject obj = new MyObject();
obj.Name = "Value";
我想用反射设置obj.Name
。类似的东西:
Reflection.SetProperty(obj, "Name") = "Value";
有没有办法做到这一点?
答案 0 :(得分:353)
是的,您可以使用Type.InvokeMember()
:
using System.Reflection;
MyObject obj = new MyObject();
obj.GetType().InvokeMember("Name",
BindingFlags.Instance | BindingFlags.Public | BindingFlags.SetProperty,
Type.DefaultBinder, obj, "Value");
如果obj
没有名为Name
的属性,或者无法设置,则会抛出异常。
另一种方法是获取属性的元数据,然后进行设置。这将允许您检查属性是否存在,并验证是否可以设置:
using System.Reflection;
MyObject obj = new MyObject();
PropertyInfo prop = obj.GetType().GetProperty("Name", BindingFlags.Public | BindingFlags.Instance);
if(null != prop && prop.CanWrite)
{
prop.SetValue(obj, "Value", null);
}
答案 1 :(得分:262)
你也可以这样做:
Type type = target.GetType();
PropertyInfo prop = type.GetProperty("propertyName");
prop.SetValue (target, propertyValue, null);
其中target是将设置其属性的对象。
答案 2 :(得分:85)
基本上反思,即
myObject.GetType().GetProperty(property).SetValue(myObject, "Bob", null);
或者有图书馆可以在方便性和性能方面提供帮助;例如FastMember:
var wrapped = ObjectAccessor.Create(obj);
wrapped[property] = "Bob";
(其优点还在于不需要提前知道它是一个字段还是一个属性)
答案 3 :(得分:25)
或者你可以将Marc的一个班轮包裹在你自己的扩展类中:
public static class PropertyExtension{
public static void SetPropertyValue(this object obj, string propName, object value)
{
obj.GetType().GetProperty(propName).SetValue(obj, value, null);
}
}
并将其称为:
myObject.SetPropertyValue("myProperty", "myValue");
为了更好的衡量,让我们添加一个方法来获取属性值:
public static object GetPropertyValue(this object obj, string propName)
{
return obj.GetType().GetProperty(propName).GetValue (obj, null);
}
答案 4 :(得分:14)
是的,使用System.Reflection
:
using System.Reflection;
...
string prop = "name";
PropertyInfo pi = myObject.GetType().GetProperty(prop);
pi.SetValue(myObject, "Bob", null);
答案 5 :(得分:12)
您还可以使用类似的方式访问字段:
var obj=new MyObject();
FieldInfo fi = obj.GetType().
GetField("Name", BindingFlags.NonPublic | BindingFlags.Instance);
fi.SetValue(obj,value)
使用反射,一切都可以是一本打开的书:)在我的例子中,我们绑定到私有实例级字段。
答案 6 :(得分:11)
使用这样的东西:
public static class PropertyExtension{
public static void SetPropertyValue(this object p_object, string p_propertyName, object value)
{
PropertyInfo property = p_object.GetType().GetProperty(p_propertyName);
property.SetValue(p_object, Convert.ChangeType(value, property.PropertyType), null);
}
}
或
public static class PropertyExtension{
public static void SetPropertyValue(this object p_object, string p_propertyName, object value)
{
PropertyInfo property = p_object.GetType().GetProperty(p_propertyName);
Type t = Nullable.GetUnderlyingType(property.PropertyType) ?? property.PropertyType;
object safeValue = (value == null) ? null : Convert.ChangeType(value, t);
property.SetValue(p_object, safeValue, null);
}
}
答案 7 :(得分:8)
如果要使用属性名称从另一个对象大量分配对象的属性,可以尝试这样做:
public static void Assign(this object destination, object source)
{
if (destination is IEnumerable && source is IEnumerable)
{
var dest_enumerator = (destination as IEnumerable).GetEnumerator();
var src_enumerator = (source as IEnumerable).GetEnumerator();
while (dest_enumerator.MoveNext() && src_enumerator.MoveNext())
dest_enumerator.Current.Assign(src_enumerator.Current);
}
else
{
var destProperties = destination.GetType().GetProperties();
foreach (var sourceProperty in source.GetType().GetProperties())
{
foreach (var destProperty in destProperties)
{
if (destProperty.Name == sourceProperty.Name && destProperty.PropertyType.IsAssignableFrom(sourceProperty.PropertyType))
{
destProperty.SetValue(destination, sourceProperty.GetValue(source, new object[] { }), new object[] { });
break;
}
}
}
}
答案 8 :(得分:0)
我刚刚发布了一个Nuget包,它不仅可以在任何深度设置给定对象中的第一级属性,还可以设置嵌套属性。
通过从根开始的路径设置对象属性的值。
对象可以是复杂对象,属性可以是多级深层嵌套属性,也可以是根直接属性下的属性。 ObjectWriter
将使用属性path参数找到该属性并更新其值。属性路径是从根到我们要设置的结束节点属性访问的属性的附加名称,由分隔符字符串参数分隔。
用法:
直接在对象根目录下设置属性:
IE中。 LineItem
类有一个名为ItemId
LineItem lineItem = new LineItem();
ObjectWriter.Set(lineItem, "ItemId", 13, delimiter: null);
用于在对象根目录下设置多个级别的嵌套属性:
IE中。 Invite
类有一个名为State
的属性,它有一个名为Invite
(Invite类型)的属性,它有一个名为Recipient
的属性,它有一个名为{{的属性1}}。
为了使事情变得更复杂,Id
属性不是引用类型,而是State
。
以下是如何在一行中在对象树底部设置Id属性(到字符串值“outlook”)。
struct
答案 9 :(得分:0)
根据MarcGravell的建议,我构建了以下静态方法。方法通常使用 FastMember 从源对象到目标分配所有匹配属性
public static void DynamicPropertySet(object source, object target)
{
//SOURCE
var src_accessor = TypeAccessor.Create(source.GetType());
if (src_accessor == null)
{
throw new ApplicationException("Could not create accessor!");
}
var src_members = src_accessor.GetMembers();
if (src_members == null)
{
throw new ApplicationException("Could not fetch members!");
}
var src_class_members = src_members.Where(x => x.Type.IsClass && !x.Type.IsPrimitive);
var src_class_propNames = src_class_members.Select(x => x.Name);
var src_propNames = src_members.Except(src_class_members).Select(x => x.Name);
//TARGET
var trg_accessor = TypeAccessor.Create(target.GetType());
if (trg_accessor == null)
{
throw new ApplicationException("Could not create accessor!");
}
var trg_members = trg_accessor.GetMembers();
if (trg_members == null)
{
throw new ApplicationException("Could not create accessor!");
}
var trg_class_members = trg_members.Where(x => x.Type.IsClass && !x.Type.IsPrimitive);
var trg_class_propNames = trg_class_members.Select(x => x.Name);
var trg_propNames = trg_members.Except(trg_class_members).Select(x => x.Name);
var class_propNames = trg_class_propNames.Intersect(src_class_propNames);
var propNames = trg_propNames.Intersect(src_propNames);
foreach (var propName in propNames)
{
trg_accessor[target, propName] = src_accessor[source, propName];
}
foreach (var member in class_propNames)
{
var src = src_accessor[source, member];
var trg = trg_accessor[target, member];
if (src != null && trg != null)
{
DynamicPropertySet(src, trg);
}
}
}