AjScript.Language.Function.ApplyFunction.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)
            {
                object newthis = arguments[0];

                return ((ICallable)@this).Invoke(context, newthis, arguments.Skip(1).ToArray());
            }
Function.ApplyFunction