| 
            
              ConcurrentIsolatedQueueTDequeue Method
             | 
          
        
        
            Dequeues all of the items into the provided array
            
        
        Namespace: GSF.CollectionsAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
Syntaxpublic int Dequeue(
	T[] items,
	int startingIndex,
	int length
)
public:
int Dequeue(
	array<T>^ items, 
	int startingIndex, 
	int length
)
member Dequeue : 
        items : 'T[] * 
        startingIndex : int * 
        length : int -> int function Dequeue(items, startingIndex, length);
 View SourceParameters
- items  T
 - where to put the items
 - startingIndex  Int32
 - the starting index
 - length  Int32
 - the maximum number of times to store
 
Return Value
Int32the number of items dequeued
See Also