/// <summary> /// Copies the elements of the <see cref="AssetWriterCollection"/> to an <see cref="Array"/>, /// starting at a particular <see cref="Array"/> index. /// </summary> /// <param name="array">The one-dimensional <see cref="Array"/> that is the destination of /// the elements copied from <see cref="AssetWriterCollection"/>. The <see cref="Array"/> must /// have zero-based indexing.</param> /// <param name="arrayIndex"></param> public void CopyTo(IAssetWriter[] array, int arrayIndex) => _writers.CopyTo(array, arrayIndex);
/// <summary> /// Copies the elements of the <see cref="AssetReaderCollection"/> to an <see cref="Array"/>, /// starting at a particular <see cref="Array"/> index. /// </summary> /// <param name="array">The one-dimensional <see cref="Array"/> that is the destination of /// the elements copied from <see cref="AssetReaderCollection"/>. The <see cref="Array"/> must /// have zero-based indexing.</param> /// <param name="arrayIndex"></param> public void CopyTo(IAssetReader[] array, int arrayIndex) => _readers.CopyTo(array, arrayIndex);