System.Data.SqlTypes.SqlDouble.ToSqlDecimal C# (CSharp) Method

ToSqlDecimal() public method

public ToSqlDecimal ( ) : SqlDecimal
return SqlDecimal
        public SqlDecimal ToSqlDecimal()
        {
            return (SqlDecimal)this;
        }

Usage Example

Esempio n. 1
0
 /// <summary>
 /// Converts the value of the specified SqlDouble to its equivalent SqlDecimal representation.
 /// </summary>
 /// <param name="value">An SqlDouble.</param>
 /// <returns>The equivalent SqlDecimal.</returns>
 public static SqlDecimal ToSqlDecimal(SqlDouble value) { return value.ToSqlDecimal(); }
All Usage Examples Of System.Data.SqlTypes.SqlDouble::ToSqlDecimal