/// <summary>
 /// Reads the <see cref="SciterValue"/> as a <see cref="byte"/> <see cref="Array"/>
 /// </summary>
 /// <param name="sciterValue"></param>
 /// <param name="value">The output value</param>
 /// <returns></returns>
 public static bool TryAsBytes(this SciterValue sciterValue, out byte[] value)
 {
     return(sciterValue.TryAsBytesInternal(out value));
 }