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;
        }