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.

ConcurrentStack<T>::TryPopRange Method (array<T>^)

.NET Framework (current version)
 

Attempts to pop and return multiple objects from the top of the ConcurrentStack<T> atomically.

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

public:
int TryPopRange(
	array<T>^ items
)

Parameters

items
Type: array<T>^

The Array to which objects popped from the top of the ConcurrentStack<T> will be added.

Return Value

Type: System::Int32

The number of objects successfully popped from the top of the ConcurrentStack<T> and inserted in items.

Exception Condition
ArgumentNullException

items is a null argument (Nothing in Visual Basic).

When popping multiple items, if there is little contention on the stack, using TryPopRange can be more efficient than using TryPop once per item to be removed. Nodes fill the items array with the first item to be popped at the startIndex, the second item to be popped at startIndex + 1, and so on.

For a code example, see ConcurrentStack<T>.

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