AjErl.Language.DelayedCall.DelayedCall C# (CSharp) 메소드

DelayedCall() 공개 메소드

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