IPAddressCollection::CopyTo Method (array<IPAddress^>^, Int32)
.NET Framework (current version)
Copies the elements in this collection to a one-dimensional array of type IPAddress.
Assembly: System (in System.dll)
Parameters
- array
-
Type:
array<System.Net::IPAddress^>^
A one-dimensional array that receives a copy of the collection.
- offset
-
Type:
System::Int32
The zero-based index in array at which the copy begins.
Implements
ICollection<T>::CopyTo(array<T>^, Int32)| Exception | Condition |
|---|---|
| ArgumentNullException | array is null. |
| ArgumentOutOfRangeException | offset is less than zero. |
| ArgumentException |
-or- The number of elements in this IPAddressCollection is greater than the available space from offset to the end of the destination array. |
| InvalidCastException | The elements in this IPAddressCollection cannot be cast automatically to the type of the destination array. |
The array parameter must be one-dimensional with zero-based indexing.
Universal Windows Platform
Available since 10
.NET Framework
Available since 2.0
Available since 10
.NET Framework
Available since 2.0
Show: