SqlDouble.Division(SqlDouble, SqlDouble) 运算符

定义

该除法运算符将第一个 SqlDouble 操作数除以第二个操作数。The division operator divides the first SqlDouble operand by the second.

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

参数

x
SqlDouble

SqlDouble 结构。A SqlDouble structure.

y
SqlDouble

SqlDouble 结构。A SqlDouble structure.

返回

SqlDouble

一个 SqlDouble 结构,它包含该除法运算的结果。A SqlDouble structure that contains the results of the division operation.

注解

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

适用于