DocumentReferenceCollection.CopyTo(DocumentReference[], Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copies the whole collection to an array that starts at a given array index.
public:
void CopyTo(cli::array <System::Windows::Documents::DocumentReference ^> ^ array, int arrayIndex);
public void CopyTo (System.Windows.Documents.DocumentReference[] array, int arrayIndex);
member this.CopyTo : System.Windows.Documents.DocumentReference[] * int -> unit
Public Sub CopyTo (array As DocumentReference(), arrayIndex As Integer)
Parameters
- array
- DocumentReference[]
The destination array to which the elements from the collection should be copied.
- arrayIndex
- Int32
The zero-based starting index within the array where the collection elements are to be copied.
Remarks
Basic collection support. Implements ICollection<T>.CopyTo.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.