ConcurrentStack(Of T).PushRange Method (T())

.NET Framework (current version)
 

Inserts multiple objects at the top of the ConcurrentStack(Of T) atomically.

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

Public Sub PushRange (
	items As T()
)

Parameters

items
Type: T()

The objects to push onto the ConcurrentStack(Of 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(Of 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: