Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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"?

share|improve this question

5 Answers

up vote 35 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();
    }
}
share|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 4 more comments

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);
    }
}
share|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
show 5 more comments
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>));
	}
share|improve this answer

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;
share|improve this answer
Not answering the question. Its about FieldInfo – nawfal Apr 19 at 20:07
    public class Reflection
{
    #region "EXPRESSION TREES"

    public Func<object> CreateInstance_Delegate_ET(Type objtype)
    {
        try
        {
            var ci = objtype.GetConstructor(Type.EmptyTypes);
            return Expression.Lambda<Func<object>>(
            Expression.New(ci)).Compile();
        }
        catch (Exception ex)
        {
            throw new Exception(string.Format("Failed to create instance for type '{0}' from assemebly '{1}'",
                 objtype.FullName, objtype.AssemblyQualifiedName), ex);
        }
    }

    public Func<object, object> GetterValue_Delegate_ET(PropertyInfo propertyInfo)
    {
        var instance = Expression.Parameter(typeof(object), "i");
        var convertInstance = Expression.TypeAs(instance, propertyInfo.DeclaringType);
        var property = Expression.Property(convertInstance, propertyInfo);
        var convertProperty = Expression.TypeAs(property, typeof(object));
        return Expression.Lambda<Func<object, object>>(convertProperty, instance).Compile();
    }


    public Action<object, object> SetterValue_Delegate_ET(PropertyInfo propertyInfo)
    {

        var instance = Expression.Parameter(typeof(object), "i");
        var convertInstance = Expression.TypeAs(instance, propertyInfo.DeclaringType);
        var argument = Expression.Parameter(typeof(object), "a");

        var setterCall = Expression.Call(
            convertInstance,
            propertyInfo.GetSetMethod(),
            Expression.Convert(argument, propertyInfo.PropertyType));


        return Expression.Lambda<Action<object, object>>
        (
            setterCall, instance, argument
        ).Compile();
    }

    #endregion
}



public class TestClass
{
    //Test object

    public string Name { get; set; }
}

public class Tester
{
    // USAGE

    public void Test()
    {
        var propertyInfo = typeof(TestClass).GetProperty("Name");
        Reflection rf = new Reflection();

        //next three can be once cached and used along the programm
        var can_be_cached_CreateInstance = rf.CreateInstance_Delegate_ET(typeof(TestClass));
        var can_be_cached_GetterDelegate_ForProperty_Name = rf.GetterValue_Delegate_ET(propertyInfo);
        var can_be_cached_SetterDelegate_ForProperty_Name = rf.SetterValue_Delegate_ET(propertyInfo);

        object newTestClass_Instance = can_be_cached_CreateInstance();

        can_be_cached_SetterDelegate_ForProperty_Name(newTestClass_Instance, "your name");

        Console.WriteLine(can_be_cached_GetterDelegate_ForProperty_Name(newTestClass_Instance).ToString());
        //"your Name" will be printed out
    }
}
share|improve this answer
the question is about FieldInfo – nawfal Apr 19 at 21:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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