// C# Eval Expression
// Doc: https://eval-expression.net/my-first-evaluation
// @nuget: Z.Expressions.Eval
/*
## Evaluate a C# expression
The simplest way to execute a C# expression at runtime is by using the Eval.Execute method. Under the hood, it calls the Execute method from the DefaultContext that you will learn later in this tutorial.
The Execute method takes as the first parameter the code to execute.
In this example, we will dynamically create a list of int and filter it using LINQ to return only items greater than 2.
Remember that the C# Eval library supports more than this basic statement. However, we will keep it very simple in our getting started section.
See more: https://eval-expression.net/my-first-evaluation
*/
using System;
using System.Collections.Generic;
using Z.Expressions;
public class Program
{
public static void Main()
// NOTE: The returned list contains "3" and "4"
var list = Eval.Execute(@"
var list = new List<int>() { 1, 2, 3, 4 };
return list.Where(x => x > 2).ToList();
");
FiddleHelper.WriteTable((List<int>)list);
}