System.Linq.Expressions.Expression<TDelegate>
namespace System.Linq.Expressions
{
public sealed class Expression<TDelegate> : LambdaExpression
{
public new TDelegate Compile();
public new TDelegate Compile(bool preferInterpretation);
public new TDelegate Compile(DebugInfoGenerator debugInfoGenerator);
public Expression<TDelegate> Update(Expression body, IEnumerable<ParameterExpression> parameters);
}
}