/
aprogrammer
/
dotnet-docs
Обзор
Документация
Войти
/
aprogrammer
/
dotnet-docs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
VS2017
samples/csharp/expression-trees/Program.cs
35 строк
1 KB
Bill Wagner
Update ci build for ubuntu (#891)
09 авг 2016, 23:02
09 авг 2016, 23:02
ce52ada
Код
Авторство
О чём код?
using System; using System.Collections.Generic; namespace ExpressionTreeSamples { public class Program { private static List<Sample> allSamples = new List<Sample> { new ExpressionTreeClassesSampleOne(), new ExpressionTreeClassesSampleTwo(), new ExpressionTreeExecutionSampleOne(), new ExpressionTreeExecutionSampleTwo(), new ExpressionTreeInterpretingSampleOne(), new ExpressionTreeInterpretingSampleTwo(), new ExpressionTreeInterpretingSampleThree(), new ExpressionTreeInterpretingSampleFour(), new ExpressionTreeBuildingSampleOne(), new ExpressionTreeBuildingSampleTwo(), new ExpressionTreeTranslationSampleOne(), new ExpressionTreeTranslationSampleTwo(), new ExpressionTreeTranslationSampleThree() }; public static void Main(string[] args) { foreach (var sample in allSamples) { Console.WriteLine("========== ========== ========== =========="); Console.WriteLine($"Running Sample {sample.Name}"); sample.Run(); } } } }