コード例 #1
0
 /// <summary>
 /// Returns the SQLiteValue as a <see cref="decimal"/>.
 /// </summary>
 public static decimal ToDecimal(this ResultSetValue This)
 => Convert.ToDecimal(This.ToDouble());
コード例 #2
0
 /// <summary>
 /// Returns the SQLiteValue as a <see cref="float"/>.
 /// </summary>
 public static float ToFloat(this ResultSetValue This)
 => (float)This.ToDouble();