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>::PushRange Method (array<T>^)

.NET Framework (current version)
 

Inserts multiple objects at the top of the ConcurrentStack<T> atomically.

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

public:
void PushRange(
	array<T>^ items
)

Parameters

items
Type: array<T>^

The objects to push onto the ConcurrentStack<T>.

Exception Condition
ArgumentNullException

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

When adding multiple items to the stack, using PushRange is a more efficient mechanism than using Push one item at a time. Additionally, PushRange guarantees that all of the elements will be added atomically, meaning that no other threads will be able to inject elements between the elements being pushed. Items at lower indices in the items array will be pushed before items at higher indices.

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