How do I set a field value in an C# Expression tree? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T03:01:30Z http://stackoverflow.com/feeds/question/321650 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/321650/how-do-i-set-a-field-value-in-an-c-expression-tree 4 How do I set a field value in an C# Expression tree? TheSoftwareJedi 2008-11-26T18:15:34Z 2009-10-06T01:06:16Z <p>Given:</p> <pre><code>FieldInfo field = &lt;some valid string field on type T&gt;; 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#321686 11 Answer by Barry Kelly for How do I set a field value in an C# Expression tree? Barry Kelly 2008-11-26T18:29:14Z 2008-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&lt;T,TValue&gt; MakeSetter&lt;T,TValue&gt;(FieldInfo field) { DynamicMethod m = new DynamicMethod( "setter", typeof(void), new Type[] { typeof(T), typeof(TValue) }, typeof(Program)); ILGenerator cg = m.GetILGenerator(); // arg0.&lt;field&gt; = arg1 cg.Emit(OpCodes.Ldarg_0); cg.Emit(OpCodes.Ldarg_1); cg.Emit(OpCodes.Stfld, field); cg.Emit(OpCodes.Ret); return (Action&lt;T,TValue&gt;) m.CreateDelegate(typeof(Action&lt;T,TValue&gt;)); } static void Main() { FieldInfo f = typeof(MyObject).GetField("MyField"); Action&lt;MyObject,int&gt; setter = MakeSetter&lt;MyObject,int&gt;(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#321708 1 Answer by Zachary Yates for How do I set a field value in an C# Expression tree? Zachary Yates 2008-11-26T18:36:45Z 2008-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#322411 3 Answer by Marc Gravell for How do I set a field value in an C# Expression tree? Marc Gravell 2008-11-26T22:40:47Z 2008-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&lt;Foo, int&gt; setter = (Action&lt;Foo, int&gt;) Delegate.CreateDelegate(typeof(Action&lt;Foo, int&gt;), 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#1523147 0 Answer by DoubleDown for How do I set a field value in an C# Expression tree? DoubleDown 2009-10-06T01:06:16Z 2009-10-06T01:06:16Z <pre><code>private static Action&lt;object, object&gt; 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&lt;object, object&gt;)setMethod.CreateDelegate(typeof(Action&lt;object, object&gt;)); } </code></pre>