using System; using System.Linq.Expressions; Expression<Func<int, bool>> test = value => value > 10 && value < 20; Console.WriteLine(test.Body.NodeType);