Пример #1
0
 /// <summary>
 /// Reads the <see cref="SciterValue"/> as a Currency (<see cref="SciterColor"/>)
 /// </summary>
 /// <param name="sciterValue"></param>
 /// <param name="value">The output value</param>
 /// <returns></returns>
 public static bool TryAsCurrency(this SciterValue sciterValue, out long value)
 {
     return(sciterValue.TryAsCurrencyInternal(out value));
 }