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

ToSqlMoney() public method

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

Usage Example

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