Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Contract::ForAll<T> Method (IEnumerable<T>^, Predicate<T>^)

 

Determines whether all the elements in a collection exist within a function.

Namespace:   System.Diagnostics.Contracts
Assembly:  mscorlib (in mscorlib.dll)

public:
generic<typename T>
static bool ForAll(
	IEnumerable<T>^ collection,
	Predicate<T>^ predicate
)

Parameters

collection
Type: System.Collections.Generic::IEnumerable<T>^

The collection from which elements of type T will be drawn to pass to predicate.

predicate
Type: System::Predicate<T>^

The function to evaluate for the existence of all the elements in collection.

Return Value

Type: System::Boolean

true if and only if predicate returns true for all elements of type T in collection.

Type Parameters

T

The type that is contained in collection.

Exception Condition
ArgumentNullException

collection or predicate is null.

The following example demonstrates how to use the ForAll<T> method to determine whether a collection has a null element.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 4.0
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 4.0
Windows Phone Silverlight
Available since 8.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft