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

ToSqlMoney() public method

public ToSqlMoney ( ) : SqlMoney
return SqlMoney
        public SqlMoney ToSqlMoney()
        {
            return (SqlMoney)this;
        }

Usage Example

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