SqlInt64.Multiply(SqlInt64, SqlInt64) 运算符

定义

计算两个 SqlInt64 参数的乘积。Computes the product of the two SqlInt64 parameters.

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

参数

x
SqlInt64

SqlInt64 结构。A SqlInt64 structure.

y
SqlInt64

SqlInt64 结构。A SqlInt64 structure.

返回

SqlInt64

一个新的 SqlInt64 结构,它的 Value 等于两个 SqlInt64 参数的乘积。A new SqlInt64 structure whose Value is equal to the product of the two SqlInt64 parameters.

注解

此运算符的等效方法是 SqlInt64.Multiply(SqlInt64, SqlInt64)The equivalent method for this operator is SqlInt64.Multiply(SqlInt64, SqlInt64)

适用于