SqlDecimal.Multiply(SqlDecimal, SqlDecimal) Operatore

Definizione

L’operatore di moltiplicazione calcola il prodotto di due parametri SqlDecimal.

public:
 static System::Data::SqlTypes::SqlDecimal operator *(System::Data::SqlTypes::SqlDecimal x, System::Data::SqlTypes::SqlDecimal y);
public static System.Data.SqlTypes.SqlDecimal operator * (System.Data.SqlTypes.SqlDecimal x, System.Data.SqlTypes.SqlDecimal y);
static member ( * ) : System.Data.SqlTypes.SqlDecimal * System.Data.SqlTypes.SqlDecimal -> System.Data.SqlTypes.SqlDecimal
Public Shared Operator * (x As SqlDecimal, y As SqlDecimal) As SqlDecimal

Parametri

x
SqlDecimal

Struttura SqlDecimal.

y
SqlDecimal

Struttura SqlDecimal.

Restituisce

Nuova struttura SqlDecimal la cui proprietà Value contiene il prodotto della moltiplicazione.

Commenti

Il metodo equivalente per questo operatore è SqlDecimal.Multiply(SqlDecimal, SqlDecimal).

Si applica a

Vedi anche