public static SciterValue Invoke(this SciterValue sciterValue, params SciterValue[] args)
 {
     return(sciterValue?.InvokeInternal(args: args));
 }
 public static SciterValue Invoke(this SciterValue sciterValue, IList <SciterValue> args, SciterValue self = null, string urlOrScriptName = null)
 {
     return(sciterValue?.InvokeInternal(args: args, self: self, urlOrScriptName: urlOrScriptName));
 }