web-dev-qa-db-ja.com

リフレクションを使用してオブジェクトプロパティを設定する

私はオブジェクトのプロパティを設定するためにリフレクションを使用することができますC#での方法はありますか?

例:

MyObject obj = new MyObject();
obj.Name = "Value";

リフレクションを使用してobj.Nameを設定したいです。何かのようなもの:

Reflection.SetProperty(obj, "Name") = "Value";

これを行う方法はありますか?

293
Melursus

はい、Type.InvokeMember()を使用できます。

using System.Reflection;
MyObject obj = new MyObject();
obj.GetType().InvokeMember("Name",
    BindingFlags.Instance | BindingFlags.Public | BindingFlags.SetProperty,
    Type.DefaultBinder, obj, "Value");

objNameという名前のプロパティがない場合、または設定できない場合、これは例外をスローします。

もう1つの方法は、プロパティのメタデータを取得して設定することです。これにより、プロパティの存在を確認し、設定できることを確認できます。

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);
}
354
Andy

次のこともできます。

Type type = target.GetType();

PropertyInfo prop = type.GetProperty("propertyName");

prop.SetValue (target, propertyValue, null);

targetは、プロパティを設定するオブジェクトです。

263
El Cheicon

反射、基本的に.

myObject.GetType().GetProperty(property).SetValue(myObject, "Bob", null);

あるいは、利便性とパフォーマンスの両面で両方を手助けするライブラリがあります。例えば FastMember の場合:

var wrapped = ObjectAccessor.Create(obj); 
wrapped[property] = "Bob";

(これは、それがフィールドであるかプロパティであるかを事前に知る必要がないという利点もあります)

85
Marc Gravell

あるいは、Marcの1つのライナーを独自の拡張クラスの中にラップすることもできます。

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);
}
25
Erik K.

はい、System.Reflectionを使用します。

using System.Reflection;

...

    string prop = "name";
    PropertyInfo pi = myObject.GetType().GetProperty(prop);
    pi.SetValue(myObject, "Bob", null);
14
D Stanley

同様の方法でフィールドにアクセスすることもできます。

var obj=new MyObject();
FieldInfo fi = obj.GetType().
  GetField("Name", BindingFlags.NonPublic | BindingFlags.Instance);
fi.SetValue(obj,value)

リフレクションを使えば、すべてオープンブックになることができます。私の例では、プライベートインスタンスレベルフィールドにバインドしています。

12
JoshBerke

このような代名詞を使用してください:

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);
   }
}
11

プロパティ名を使用して、あるオブジェクトのプロパティを別のオブジェクトからまとめて割り当てたい場合は、これを試すことができます。

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
user3679106

最初のレベルのプロパティだけでなく、与えられたオブジェクトのネストされたプロパティもあらゆる深さで設定できるNugetパッケージを公開しました。

これは パッケージ です。

オブジェクトのプロパティの値を、ルートからのパスで設定します。

オブジェクトは複雑なオブジェクトで、プロパティはマルチレベルのディープネストプロパティ、またはルート直下のプロパティです。 ObjectWriterは、プロパティパスパラメータを使用してプロパティを検索し、その値を更新します。プロパティパスは、設定したいルートからエンドノードのプロパティまでアクセスしたプロパティの付加名で、区切り文字列パラメータで区切られています。

使用法:

オブジェクトルートの直下にプロパティを設定するには

すなわちLineItemクラスにはItemIdという名前のintプロパティがあります。

LineItem lineItem = new LineItem();

ObjectWriter.Set(lineItem, "ItemId", 13, delimiter: null);

オブジェクトルートの下に複数レベルのネストプロパティを設定するには

すなわちInviteクラスはStateというプロパティを持ち、これは(Invite型の)Inviteというプロパティを持ち、Recipientというプロパティを持ち、Idと呼ばれるプロパティを持ちます。

さらに複雑にするために、Stateプロパティは参照型ではなく、structです。

これは、オブジェクトツリーの下部にあるIdプロパティを(「Outlook」の文字列値に)1行で設定する方法です。

Invite invite = new Invite();

ObjectWriter.Set(invite, "State_Invite_Recipient_Id", "Outlook", delimiter: "_");
0
Dogu Arslan

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);
            }
        }
    }
0
Cogent