SqlSingle.Inequality(SqlSingle, SqlSingle) 运算符
定义
public:
static System::Data::SqlTypes::SqlBoolean operator !=(System::Data::SqlTypes::SqlSingle x, System::Data::SqlTypes::SqlSingle y);
public static System.Data.SqlTypes.SqlBoolean operator != (System.Data.SqlTypes.SqlSingle x, System.Data.SqlTypes.SqlSingle y);
static member op_Inequality : System.Data.SqlTypes.SqlSingle * System.Data.SqlTypes.SqlSingle -> System.Data.SqlTypes.SqlBoolean
Public Shared Operator != (x As SqlSingle, y As SqlSingle) As SqlBoolean
参数
返回
一个 SqlBoolean,它在两个实例不等时为 True,在两个实例相等时为 False。A SqlBoolean that is True if the two instances are not equal or False if the two instances are equal. 如果 SqlSingle 的任一实例为空,则 Value 的 SqlBoolean 将为 Null。If either instance of SqlSingle is null, the Value of the SqlBoolean will be Null.
注解
此运算符的等效方法为 SqlSingle.NotEquals 。The equivalent method for this operator is SqlSingle.NotEquals.