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.

Partitioner<TSource>::GetPartitions Method (Int32)

.NET Framework (current version)
 

Partitions the underlying collection into the given number of partitions.

Namespace:   System.Collections.Concurrent
Assembly:  mscorlib (in mscorlib.dll)

public:
virtual IList<IEnumerator<TSource>^>^ GetPartitions(
	int partitionCount
) abstract

Parameters

partitionCount
Type: System::Int32

The number of partitions to create.

Return Value

Type: System.Collections.Generic::IList<IEnumerator<TSource>^>^

A list containing partitionCount enumerators.

A class that implements this method is expected to return exactly the number of partitions that are specified in partitionCount. If a partition contains no elements, then return an empty enumerator rather than null (Nothing in Visual Basic). For more information, see Custom Partitioners for PLINQ and TPL.

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