using System.Linq.Expressions;namespace ExpressionApplication{ class Program { static void Main(string[] args) { Expression<del> exp = x => x * x; } }}
Login to post response