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

DelayedCall() public method

public DelayedCall ( IFunction function, Context context, IList arguments ) : System
function IFunction
context Context
arguments IList
return System
        public DelayedCall(IFunction function, Context context, IList<object> arguments)
        {
            this.function = function;
            this.context = context;
            this.arguments = arguments;
        }