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

ToSqlDecimal() public method

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

Usage Example

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