AjErl.Language.Function.Function C# (CSharp) Метод

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

public Function ( Context context, IList parameters, IExpression body ) : System
context Context
parameters IList
body IExpression
Результат System
        public Function(Context context, IList<object> parameters, IExpression body)
        {
            this.context = context;
            this.parameters = parameters;
            this.body = body;
        }