public static bool TryInvoke(this SciterValue sciterValue, out SciterValue value, params SciterValue[] args)
 {
     value = new SciterValue();
     return(sciterValue?.TryInvokeInternal(out value, args: args) == true);
 }
 public static bool TryInvoke(this SciterValue sciterValue, out SciterValue value, IList <SciterValue> args, SciterValue self = null, string urlOrScriptName = null)
 {
     value = new SciterValue();
     return(sciterValue?.TryInvokeInternal(out value, args: args, self: self, urlOrScriptName: urlOrScriptName) == true);
 }