AjErl.Language.Function.Function C# (CSharp) Method

Function() public method

public Function ( Context context, IList parameters, IExpression body ) : System
context Context
parameters IList
body IExpression
return System
        public Function(Context context, IList<object> parameters, IExpression body)
        {
            this.context = context;
            this.parameters = parameters;
            this.body = body;
        }