Enumerable ExtensionsNot InT(IEnumerableT, String) Method
Returns true if enumerable does not contain a value that is 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 the enumerable does not contain a value that is 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 IEnumerable<T> enumerable,
string userVariable
)
VB
<ExtensionAttribute>
Public Shared Function NotIn(Of T) (
enumerable As IEnumerable(Of T),
userVariable As String
) As BooleanParameters
- enumerable IEnumerableT
- The values to check for inequality.
- userVariable String
- The user variable.
Type Parameters
- T
- The type of the elements of enumerable.
Return Value
Booleantrue if the enumerable does not contain a value that is equal to any of the other arguments, otherwise false.