up vote 8 down vote favorite
8
share [g+] share [fb]

Given:

FieldInfo field = <some valid string field on type T>;
ParameterExpression targetExp = Expression.Parameter(typeof(T), "target");
ParameterExpression valueExp = Expression.Parameter(typeof(string), "value");

How do I compile a lambda expression to set the field on the "target" parameter to "value"?

link|improve this question

75% accept rate
feedback

5 Answers

up vote 20 down vote accepted

.Net 4.0 : now that there's Expression.Assign, this is easy to do:

FieldInfo field = typeof(T).GetField("fieldName");
ParameterExpression targetExp = Expression.Parameter(typeof(T), "target");
ParameterExpression valueExp = Expression.Parameter(typeof(string), "value");

// Expression.Property can be used here as well
MemberExpression fieldExp = Expression.Field(targetExp, field);
BinaryExpression assignExp = Expression.Assign(fieldExp, valueExp);

var setter = Expression.Lambda<Action<T, string>>
    (assignExp, targetExp, valueExp).Compile();

setter(subject, "new value");

.Net 3.5 : you can't, you'll have to use System.Reflection.Emit instead:

class Program
{
    class MyObject
    {
        public int MyField;
    }

    static Action<T,TValue> MakeSetter<T,TValue>(FieldInfo field)
    {
        DynamicMethod m = new DynamicMethod(
            "setter", typeof(void), new Type[] { typeof(T), typeof(TValue) }, typeof(Program));
        ILGenerator cg = m.GetILGenerator();

        // arg0.<field> = arg1
        cg.Emit(OpCodes.Ldarg_0);
        cg.Emit(OpCodes.Ldarg_1);
        cg.Emit(OpCodes.Stfld, field);
        cg.Emit(OpCodes.Ret);

        return (Action<T,TValue>) m.CreateDelegate(typeof(Action<T,TValue>));
    }

    static void Main()
    {
        FieldInfo f = typeof(MyObject).GetField("MyField");

        Action<MyObject,int> setter = MakeSetter<MyObject,int>(f);

        var obj = new MyObject();
        obj.MyField = 10;

        setter(obj, 42);

        Console.WriteLine(obj.MyField);
        Console.ReadLine();
    }
}
link|improve this answer
Great response barry, you answered my initial question. I'm going to post another question where I need op codes for calling a conversion first.... THANKS! – TheSoftwareJedi Nov 26 '08 at 18:48
Just curious, what is the difference of this approach versus just using System.Reflection and MemberInfos to set the property? – chakrit Oct 26 '09 at 23:28
chakrit - it's faster. – Barry Kelly Oct 27 '09 at 21:07
I'm terribly surprised with your answer +1. nice job!, congrats : ) – SDReyes Mar 6 '10 at 15:54
Very useful stuff, but beware of edge cases! Value type cases are not handled in this MakeSetter method. – Oleg Mihailik Aug 18 '10 at 11:16
show 3 more comments
feedback

Setting a field is, as already discussed, problematic. You can can (in 3.5) a single method, such as a property-setter - but only indirectly. This gets much easier in 4.0, as discussed here. However, if you actually have properties (not fields), you can do a lot simply with Delegate.CreateDelegate:

using System;
using System.Reflection;
public class Foo
{
    public int Bar { get; set; }
}
static class Program
{
    static void Main()
    {
        MethodInfo method = typeof(Foo).GetProperty("Bar").GetSetMethod();
        Action<Foo, int> setter = (Action<Foo, int>)
            Delegate.CreateDelegate(typeof(Action<Foo, int>), method);

        Foo foo = new Foo();
        setter(foo, 12);
        Console.WriteLine(foo.Bar);
    }
}
link|improve this answer
1  
I would love to hear why that got down-voted... seems a pretty decent side-point to me; only applies to properties, but avoids the need for either Reflection.Emit or Expression... – Marc Gravell Nov 27 '08 at 6:26
Marc, unless I'm mistaken, I had my answer unselected last night too - I went from 3056 down to 3041 this morning. This also happened on my previous answer to TheSoftwareJedi last time. Seems oddly passive-aggressive. In any case, +1 from me. – Barry Kelly Nov 27 '08 at 8:24
@Barry - indeed! Really curious... – Marc Gravell Nov 27 '08 at 8:36
Why you you have no rep for this answer is a mistery to me. +1 as this was exactly what I needed... – flq Mar 4 '09 at 16:43
Glad it helped ;-p – Marc Gravell Mar 4 '09 at 21:03
feedback
private static Action<object, object> CreateSetAccessor(FieldInfo field)
	{
		DynamicMethod setMethod = new DynamicMethod(field.Name, typeof(void), new[] { typeof(object), typeof(object) });
		ILGenerator generator = setMethod.GetILGenerator();
		LocalBuilder local = generator.DeclareLocal(field.DeclaringType);
		generator.Emit(OpCodes.Ldarg_0);
		if (field.DeclaringType.IsValueType)
		{
			generator.Emit(OpCodes.Unbox_Any, field.DeclaringType);
			generator.Emit(OpCodes.Stloc_0, local);
			generator.Emit(OpCodes.Ldloca_S, local);
		}
		else
		{
			generator.Emit(OpCodes.Castclass, field.DeclaringType);
			generator.Emit(OpCodes.Stloc_0, local);
			generator.Emit(OpCodes.Ldloc_0, local);
		}
		generator.Emit(OpCodes.Ldarg_1);
		if (field.FieldType.IsValueType)
		{
			generator.Emit(OpCodes.Unbox_Any, field.FieldType);
		}
		else
		{
			generator.Emit(OpCodes.Castclass, field.FieldType);
		}
		generator.Emit(OpCodes.Stfld, field);
		generator.Emit(OpCodes.Ret);
		return (Action<object, object>)setMethod.CreateDelegate(typeof(Action<object, object>));
	}
link|improve this answer
feedback

I think you can actually, please note the code below is just a snippet:

Create a MethodCallExpression and call the FieldInfo.SetValue() method:

MethodInfo setValueInfo = typeof(FieldInfo).GetMethod("SetValue");
ParameterExpression targetExp = Expression.Parameter(typeof(T), "target");
ParameterExpression valueExp = Expression.Parameter(typeof(string), "value");
Expression setExp = Expression.Call(targetExp, setValueInfo, targetExp, valueExp);

Still uses reflection though.

Hope that helps!

link|improve this answer
Still using reflection. No good, I'm going for speed. – TheSoftwareJedi Nov 26 '08 at 18:46
@TheSoftwareJedi - once you have called Compile, it will be very fast. The bigger problem is that this calls a method, not set a field. – Marc Gravell Nov 26 '08 at 22:36
Hmm, I see. I thought that you were compiling reflection into the lambda. I see that you aren't. Interesting! I'll give it a shot! – TheSoftwareJedi Nov 27 '08 at 2:37
Ahh... I might have misread it! It is indeed burning reflection into the lambda, so slowness will ensue... you might just as well call fieldInfo.SetValue as this lambda. My bad... – Marc Gravell Nov 27 '08 at 8:38
yeah - it is compiling reflection into the lambda. no dice – TheSoftwareJedi Nov 27 '08 at 14:32
show 2 more comments
feedback

I once made this class. Perhaps it helps:

public class GetterSetter<EntityType,propType>
{
    private readonly Func<EntityType, propType> getter;
    private readonly Action<EntityType, propType> setter;
    private readonly string propertyName;
    private readonly Expression<Func<EntityType, propType>> propertyNameExpression;

    public EntityType Entity { get; set; }

    public GetterSetter(EntityType entity, Expression<Func<EntityType, propType>> property_NameExpression)
    {
        Entity = entity;
        propertyName = GetPropertyName(property_NameExpression);
        propertyNameExpression = property_NameExpression;
        //Create Getter
        getter = propertyNameExpression.Compile();
        // Create Setter()
        MethodInfo method = typeof (EntityType).GetProperty(propertyName).GetSetMethod();
        setter = (Action<EntityType, propType>)
                 Delegate.CreateDelegate(typeof(Action<EntityType, propType>), method);
    }


    public propType Value
    {
        get
        {
            return getter(Entity);
        }
        set
        {
            setter(Entity, value);
        }
    }

    protected string GetPropertyName(LambdaExpression _propertyNameExpression)
    {
        var lambda = _propertyNameExpression as LambdaExpression;
        MemberExpression memberExpression;
        if (lambda.Body is UnaryExpression)
        {
            var unaryExpression = lambda.Body as UnaryExpression;
            memberExpression = unaryExpression.Operand as MemberExpression;
        }
        else
        {
            memberExpression = lambda.Body as MemberExpression;
        }
        var propertyInfo = memberExpression.Member as PropertyInfo;
        return propertyInfo.Name;
    }

test:

var gs = new GetterSetter<OnOffElement,bool>(new OnOffElement(), item => item.IsOn);
        gs.Value = true;
        var result = gs.Value;
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.