SqlString.LessThan(SqlString, SqlString) 操作员

定义

对两 SqlString 个操作数执行逻辑比较,以确定第一个操作数是否小于第二个操作数。

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

参数

返回

也就是说True,第一SqlBoolean个实例小于第二个实例。 否则为 False。 如果任一实例为 null,

注解

此运算符的等效方法为 SqlString.LessThan(SqlString, SqlString)

适用于

另请参阅