SqlInt64.GreaterThanOrEqual(SqlInt64, SqlInt64) 运算符

定义

对两个 SqlInt64 参数执行逻辑比较,以确定第一个参数是否大于或等于第二个参数。Performs a logical comparison of the two SqlInt64 parameters to determine whether the first is greater than or equal to the second.

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

参数

x
SqlInt64

SqlInt64 结构。A SqlInt64 structure.

y
SqlInt64

SqlInt64 结构。A SqlInt64 structure.

返回

SqlBoolean

一个 SqlBoolean,如果第一个实例大于或等于第二个实例,则为 TrueA SqlBoolean that is True if the first instance is greater than or equal to the second instance. 否则为 FalseOtherwise, False. 如果 SqlInt64 的任一实例为空,则 ValueSqlBoolean 将为 NullIf either instance of SqlInt64 is null, the Value of the SqlBoolean will be Null.

注解

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

适用于