using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ExpressionsParser { /// /// Represents a value in expressions produced by . /// public interface ILambdaValue { object Value { get; } } }