// @nuget: Z.Expressions.Eval
using System;
using System.Dynamic;
using System.Collections.Generic;
using Z.Expressions;
public class Program
{
public static void Main()
// Anonymous Type
int result = Eval.Execute<int>("NoOfContracts < 5", new { NoOfContracts = 6} );
Console.WriteLine(result);
}