I have this simple code:
public void MyWhere( Expression<Func<T, bool>> predicate)
{
}
List<string> Indexes2 = new List<string>();
Indexes2.Add("abc");
MyWhere(a=>Index2.Contains(a.a1));
While parsing the expression, that Index2 appears as a ConstantExpression. Then similar to many examples on this site and elsewhere, I have this method for parsing value of ConatantExpression:
private static object ConstantValue(ConstantExpression member)
{
// source: http://stackoverflow.com/a/2616980/291955
var objectMember = Expression.Convert(member, typeof(object));
var getterLambda = Expression.Lambda<Func<object>>(objectMember);
var getter = getterLambda.Compile();
return getter();
}
Problem is in return type of this method, type of return value is:
{Name = "<>c__DisplayClass38_0" FullName = "S_Common.A_Dictionary`2+<>c__DisplayClass38_0[[S_Common.StringIndex, S_Common, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null],[DummyTestApp.test, DummyTestApp, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null]]"}
In QuickWatch it is possible to find the underlying List, but almost no way to refer it in code.
When you "close" a local variable, an hidden class is generated. What you see in the
ConstantExpression
is a reference to an instance of this hidden class.This:
is compiled to
(see sharplab)
The interesting parts are the
private sealed class <>c__DisplayClass1_0
and theExpression.Constant(<>c__DisplayClass1_, typeof(<>c__DisplayClass1_0))
.This hidden class is hidden. You can interact with it only through reflection.
Your problem isn't really soluble in an easy way. For the specific example given:
For example just this:
will break the code I gave.