| SortedSetBaseKeyCopyTo Method  | 
  
            Copy items in this sorted set to array, starting at arrayIndex
            
 
    Namespace: 
   VelocityDb.Collection
    Assembly:
   VelocityDb (in VelocityDb.dll) Version: 8.2.1.0 (8.2.1)
 Syntax
Syntaxpublic void CopyTo(
	Key[] array,
	int arrayIndex,
	int count
)
Public Sub CopyTo ( 
	array As Key(),
	arrayIndex As Integer,
	count As Integer
)
public:
void CopyTo(
	array<Key>^ array, 
	int arrayIndex, 
	int count
)
member CopyTo : 
        array : 'Key[] * 
        arrayIndex : int * 
        count : int -> unit 
Parameters
- array
- Type: Key
 array to add items to
- arrayIndex
- Type: SystemInt32
 index to start at
- count
- Type: SystemInt32
 number of elements to copy
 See Also
See Also