System.Data.SqlTypes.SqlMoney.ToSqlString C# (CSharp) Method

ToSqlString() public method

public ToSqlString ( ) : SqlString
return SqlString
        public SqlString ToSqlString()
        {
            return (SqlString)this;
        }

Usage Example

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