Expression.Constant(_stackUse the Expression.Constant factory method:
class StackInfo
{
protected Stack<SomeClass> _stack;
public Expression Push(SomeClass item)
{
MethodInfo mi = _stack.GetType().GetMethod("Push");
return Expression.Call(Expression.Constant(_stack), mi, Expression.Constant(item));
}
}
|
2 | added 49 characters in body | ||
|
|
||||
|
1 |
|
||
|
||||
