PathCollection.CopyTo 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: 6.3.1
Syntaxpublic 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:System.String[]
The one-dimensional Array that is the destination of the elements copied from PathCollection. The Array must have zero-based indexing. - arrayIndex
- Type: System.Int32
The zero-based index in array at which copying begins.
Implements
ICollection<T>.CopyTo(T[], Int32)
See Also