How do I set a field value in an C# Expression tree? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T03:01:30Zhttp://stackoverflow.com/feeds/question/321650http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/321650/how-do-i-set-a-field-value-in-an-c-expression-tree4How do I set a field value in an C# Expression tree?TheSoftwareJedi2008-11-26T18:15:34Z2009-10-06T01:06:16Z
<p>Given:</p>
<pre><code>FieldInfo field = <some valid string field on type T>;
ParameterExpression targetExp = Expression.Parameter(typeof(T), "target");
ParameterExpression valueExp = Expression.Parameter(typeof(string), "value");
</code></pre>
<p>How do I compile a lambda expression to set the field on the "target" parameter to "value"?</p>
http://stackoverflow.com/questions/321650/how-do-i-set-a-field-value-in-an-c-expression-tree/321686#32168611Answer by Barry Kelly for How do I set a field value in an C# Expression tree?Barry Kelly2008-11-26T18:29:14Z2008-11-26T18:40:36Z<p>You can't. Expression trees don't have a node for field assignment, at least not in .NET 3.5.</p>
<p>In .NET 4, there will indeed be a node for that, as the DLR expression trees are being folded into the System.Linq.Expressions namespace.</p>
<p>To do what you want, you'll have to use System.Reflection.Emit instead. It's not hard though:</p>
<pre><code>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();
}
}
</code></pre>
http://stackoverflow.com/questions/321650/how-do-i-set-a-field-value-in-an-c-expression-tree/321708#3217081Answer by Zachary Yates for How do I set a field value in an C# Expression tree?Zachary Yates2008-11-26T18:36:45Z2008-11-26T18:36:45Z<p>I think you can actually, please note the code below is just a snippet:</p>
<p>Create a MethodCallExpression and call the FieldInfo.SetValue() method:</p>
<pre><code>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);
</code></pre>
<p>Still uses reflection though.</p>
<p>Hope that helps!</p>
http://stackoverflow.com/questions/321650/how-do-i-set-a-field-value-in-an-c-expression-tree/322411#3224113Answer by Marc Gravell for How do I set a field value in an C# Expression tree?Marc Gravell2008-11-26T22:40:47Z2008-11-26T22:40:47Z<p>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 <a href="http://marcgravell.blogspot.com/2008/11/future-expressions.html" rel="nofollow">here</a>. However, if you actually have properties (not fields), you can do a lot simply with <code>Delegate.CreateDelegate</code>:</p>
<pre><code>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);
}
}
</code></pre>
http://stackoverflow.com/questions/321650/how-do-i-set-a-field-value-in-an-c-expression-tree/1523147#15231470Answer by DoubleDown for How do I set a field value in an C# Expression tree?DoubleDown2009-10-06T01:06:16Z2009-10-06T01:06:16Z<pre><code>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>));
}
</code></pre>