CSScriptEvaluatorApi.HostApp.EvaluatorSamples.RunAll C# (CSharp) Метод

RunAll() публичный Метод

public RunAll ( ) : void
Результат void
            public void RunAll()
            {
                Action<Action, string> run = (action, name) => { action(); Console.WriteLine(name + " - OK"); };

                //if you are using C#6 "nameof(CompileMethod_Instance)" would be a better approach
                run(CompileMethod_Instance, "CompileMethod_Instance");
                run(CompileMethod_Static, "CompileMethod_Static");
                run(CreateDelegate, "CreateDelegate");
                run(LoadDelegate, "LoadDelegate");
                run(LoadCode, "LoadCode");
                run(LoadMethod, "LoadMethod");
                run(LoadMethodWithInterface, "LoadMethodWithInterface");
                run(LoadCode_WithInterface, "LoadCode_WithInterface");
                run(LoadCode_WithDuckTypedInterface, "LoadCode_WithDuckTypedInterface");
            }