Object ExtensionsNot InT(T, String) Method
Returns true if obj is not equal to any of the elements of the user variable.
Definition
Namespace: SphinxConnector.FluentApi.Util
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 6.1.0
true if obj is not equal to any of the elements of the user variable, otherwise false.
Assembly: SphinxConnector (in SphinxConnector.dll) Version: 6.1.0
C#
public static bool NotIn<T>(
this T obj,
string userVariable
)
VB
<ExtensionAttribute>
Public Shared Function NotIn(Of T) (
obj As T,
userVariable As String
) As BooleanParameters
- obj T
- The value to check for inequality.
- userVariable String
- The user variable.
Type Parameters
- T
- The type of obj.
Return Value
Booleantrue if obj is not equal to any of the elements of the user variable, otherwise false.