PathCollectionCopyTo Method |
Copies the elements of the
PathCollection to an Array, starting at a particular Array index.
Namespace:
Jam.Shell
Assembly:
ShellBrowser.Core (in ShellBrowser.Core.dll) Version: 7.1
Syntax public void CopyTo(
string[] array,
int arrayIndex
)
Public Sub CopyTo (
array As String(),
arrayIndex As Integer
)
public:
virtual void CopyTo(
array<String^>^ array,
int arrayIndex
) sealed
abstract CopyTo :
array : string[] *
arrayIndex : int -> unit
override CopyTo :
array : string[] *
arrayIndex : int -> unit
Parameters
- array
- Type: SystemString
The one-dimensional Array that is the destination of the elements copied from PathCollection. The Array must have zero-based indexing. - arrayIndex
- Type: SystemInt32
The zero-based index in array at which copying begins.
Implements
ICollectionTCopyTo(T, Int32)See Also