AppointmentCollectionCopyTo Method |
Copies the entire
AppointmentCollection to a compatible one-dimensional Array,
starting at the specified index of the target array.
Namespace: Kettic.AspNet.ControlsAssembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntaxpublic void CopyTo(
Appointment[] array,
int index
)
Public Sub CopyTo (
array As Appointment(),
index As Integer
)
public:
void CopyTo(
array<Appointment^>^ array,
int index
)
member CopyTo :
array : Appointment[] *
index : int -> unit
Parameters
- array
- Type: Kettic.AspNet.ControlsAppointment
The one-dimensional Array that is the destination of the Appointments copied from AppointmentCollection.
The Array must have zero-based indexing.
- index
- Type: SystemInt32
The zero-based index in array at which copying begins.
See Also