SqlInt32.LessThanOrEqual(SqlInt32, SqlInt32) 运算符
定义
public:
static System::Data::SqlTypes::SqlBoolean operator <=(System::Data::SqlTypes::SqlInt32 x, System::Data::SqlTypes::SqlInt32 y);
public static System.Data.SqlTypes.SqlBoolean operator <= (System.Data.SqlTypes.SqlInt32 x, System.Data.SqlTypes.SqlInt32 y);
static member ( <= ) : System.Data.SqlTypes.SqlInt32 * System.Data.SqlTypes.SqlInt32 -> System.Data.SqlTypes.SqlBoolean
Public Shared Operator <= (x As SqlInt32, y As SqlInt32) As SqlBoolean
参数
返回
一个 SqlBoolean,如果第一个实例小于或等于第二个实例,则它为 True。A SqlBoolean that is True if the first instance is less than or equal to the second instance. 否则为 False。Otherwise, False. 如果 SqlInt32 的任一实例为空,则 Value 的 SqlBoolean 将为 Null。If either instance of SqlInt32 is null, the Value of the SqlBoolean will be Null.
注解
此运算符的等效方法是 SqlInt32.LessThanOrEqual(SqlInt32, SqlInt32)The equivalent method for this operator is SqlInt32.LessThanOrEqual(SqlInt32, SqlInt32)