私はオブジェクトのプロパティを設定するためにリフレクションを使用することができますC#での方法はありますか?
例:
MyObject obj = new MyObject();
obj.Name = "Value";
リフレクションを使用してobj.Name
を設定したいです。何かのようなもの:
Reflection.SetProperty(obj, "Name") = "Value";
これを行う方法はありますか?
はい、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
という名前のプロパティがない場合、または設定できない場合、これは例外をスローします。
もう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);
}
次のこともできます。
Type type = target.GetType();
PropertyInfo prop = type.GetProperty("propertyName");
prop.SetValue (target, propertyValue, null);
targetは、プロパティを設定するオブジェクトです。
反射、基本的に.
myObject.GetType().GetProperty(property).SetValue(myObject, "Bob", null);
あるいは、利便性とパフォーマンスの両面で両方を手助けするライブラリがあります。例えば FastMember の場合:
var wrapped = ObjectAccessor.Create(obj);
wrapped[property] = "Bob";
(これは、それがフィールドであるかプロパティであるかを事前に知る必要がないという利点もあります)
あるいは、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);
}
はい、System.Reflection
を使用します。
using System.Reflection;
...
string prop = "name";
PropertyInfo pi = myObject.GetType().GetProperty(prop);
pi.SetValue(myObject, "Bob", null);
同様の方法でフィールドにアクセスすることもできます。
var obj=new MyObject();
FieldInfo fi = obj.GetType().
GetField("Name", BindingFlags.NonPublic | BindingFlags.Instance);
fi.SetValue(obj,value)
リフレクションを使えば、すべてオープンブックになることができます。私の例では、プライベートインスタンスレベルフィールドにバインドしています。
このような代名詞を使用してください:
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);
}
}
プロパティ名を使用して、あるオブジェクトのプロパティを別のオブジェクトからまとめて割り当てたい場合は、これを試すことができます。
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;
}
}
}
}
最初のレベルのプロパティだけでなく、与えられたオブジェクトのネストされたプロパティもあらゆる深さで設定できる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: "_");
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);
}
}
}