For an operation of the form x * y, binary operator overload resolution (14.2.4) is applied to select a specific operator implementation. The operands are converted to the parameter types of the selected operator, and the type of the result is the return type of the operator. The predefined multiplication operators are listed below. The operators all compute the product of x and y. Integer multiplication: In a checked context, if the product is outside the range of the result type, a System.OverflowException is thrown. In an unchecked context, overflows are not reported and any significant high-order bits outside the range of the result type are discarded. Floating-point multiplication: The product is computed according to the rules of IEEE 754 arithmetic. The following table lists the results of all possible combinations of nonzero finite values, zeros, infinities, and NaN's. In the table, x and y are positive finite values. z is the result of x * y. If the result is too large for the destination type, z is infinity. If the result is too small for the destination type, z is zero. +y 150y +0 1500 + 150 NaN +x +z 150z +0 1500 + 150 NaN 150x 150z +z 1500 +0 150 + NaN +0 +0 1500 +0 1500 NaN NaN NaN 1500 1500 +0 1500 +0 NaN NaN NaN + + 150 NaN NaN + 150 NaN 150150 + NaN NaN 150 + NaN NaN NaN NaN NaN NaN NaN NaN NaN Decimal multiplication: If the resulting value is too large to represent in the decimal format, a System.OverflowException is thrown. If the result value is too small to represent in the decimal format, the result is zero. The scale of the result, before any rounding, is the sum of the scales of the two operands. Decimal multiplication is equivalent to using the multiplication operator of type System.Decimal.