AjScript.Language.LambdaCallable.Invoke C# (CSharp) Method

Invoke() public method

public Invoke ( IContext context, object @this, object arguments ) : object
context IContext
@this object
arguments object
return object
        public object Invoke(IContext context, object @this, object[] arguments)
        {
            return this.lambda(context, @this, arguments);
        }