 | ObjectExtensionsNotInT Method (T, String) |
Returns true if obj is not equal to any of the elements of the user variable.
Namespace:
SphinxConnector.FluentApi.Util
Assembly:
SphinxConnector (in SphinxConnector.dll) Version: 5.4.1
Syntaxpublic static bool NotIn<T>(
this T obj,
string userVariable
)
<ExtensionAttribute>
Public Shared Function NotIn(Of T) (
obj As T,
userVariable As String
) As Boolean
Parameters
- obj
- Type: T
The value to check for inequality. - userVariable
- Type: SystemString
The user variable.
Type Parameters
- T
- The type of obj.
Return Value
Type:
Booleantrue if
obj is not equal to any of the elements of the user variable, otherwise
false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type . When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also