संपादित करें

इसके माध्यम से साझा किया गया


SqlBoolean.False(SqlBoolean) Operator

Definition

The false operator can be used to test the Value of the SqlBoolean to determine whether it is false.

public:
 static bool operator false(System::Data::SqlTypes::SqlBoolean x);
public static bool operator false (System.Data.SqlTypes.SqlBoolean x);
static member op_False : System.Data.SqlTypes.SqlBoolean -> bool
Public Shared Operator IsFalse (x As SqlBoolean) As Boolean

Parameters

x
SqlBoolean

The SqlBoolean structure to be tested.

Returns

true if the supplied parameter is SqlBoolean is false; otherwise, false.

Remarks

The equivalent method for this operator is SqlBoolean.False.

Applies to

See also