SqlString.LessThan(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
パラメーター
戻り値
最初のインスタンスが 2 番目のインスタンスより小さい場合は SqlBoolean の True。A SqlBoolean that is True if the first instance is less than the second instance. それ以外の場合は False。Otherwise, False. SqlString のいずれかのインスタンスが null の場合、Value の SqlBoolean は Null になります。If either instance of SqlString is null, the Value of the SqlBoolean will be Null.
注釈
この演算子の同等の方法は次のようになります。SqlString.LessThan(SqlString, SqlString)The equivalent method for this operator is SqlString.LessThan(SqlString, SqlString)