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