AjScript.Language.Function.ApplyFunction.Invoke C# (CSharp) Méthode

Invoke() public méthode

public Invoke ( IContext context, object @this, object arguments ) : object
context IContext
@this object
arguments object
Résultat 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