Click or drag to resize

LinqExtensionsNoneT Method

None of the items matches the specified predicate.

Namespace:  CSScriptLib
Assembly:  CSScriptLib (in CSScriptLib.dll) Version: 1.3.2.0
Syntax
C#
public static bool None<T>(
	this IEnumerable<T> items,
	Func<T, bool> predicate
)

Parameters

items
Type: System.Collections.GenericIEnumerableT
The items.
predicate
Type: SystemFuncT, Boolean
The predicate.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:CSScriptLib.LinqExtensions.None``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})"]

Return Value

Type: Boolean

[Missing <returns> documentation for "M:CSScriptLib.LinqExtensions.None``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.Boolean})"]

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerableT. 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