ImmutableArray<T>.Builder.CopyTo 方法

定义

重载

CopyTo(Span<T>)

将当前内容复制到指定的 Span<T>

CopyTo(T[])

将此数组的内容复制到指定的数组。

CopyTo(T[], Int32)

将当前内容复制到指定的数组。

CopyTo(Int32, T[], Int32, Int32)

将此数组的内容复制到指定的数组。

CopyTo(Span<T>)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

将当前内容复制到指定的 Span<T>

public:
 void CopyTo(Span<T> destination);
public void CopyTo (Span<T> destination);
member this.CopyTo : Span<'T> -> unit
Public Sub CopyTo (destination As Span(Of T))

参数

destination
Span<T>

Span<T>要复制到的 。

适用于

CopyTo(T[])

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

将此数组的内容复制到指定的数组。

public:
 void CopyTo(cli::array <T> ^ destination);
public void CopyTo (T[] destination);
member this.CopyTo : 'T[] -> unit
Public Sub CopyTo (destination As T())

参数

destination
T[]

要复制到的数组。

适用于

CopyTo(T[], Int32)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

将当前内容复制到指定的数组。

public:
 virtual void CopyTo(cli::array <T> ^ array, int index);
public void CopyTo (T[] array, int index);
abstract member CopyTo : 'T[] * int -> unit
override this.CopyTo : 'T[] * int -> unit
Public Sub CopyTo (array As T(), index As Integer)

参数

array
T[]

要复制到的数组。

index
Int32

开始复制操作的索引。

实现

适用于

CopyTo(Int32, T[], Int32, Int32)

Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs
Source:
ImmutableArray_1.Builder.cs

将此数组的内容复制到指定的数组。

public:
 void CopyTo(int sourceIndex, cli::array <T> ^ destination, int destinationIndex, int length);
public void CopyTo (int sourceIndex, T[] destination, int destinationIndex, int length);
member this.CopyTo : int * 'T[] * int * int -> unit
Public Sub CopyTo (sourceIndex As Integer, destination As T(), destinationIndex As Integer, length As Integer)

参数

sourceIndex
Int32

要复制的第一个元素的此集合中的索引。

destination
T[]

要复制到的数组。

destinationIndex
Int32

将第一个复制的元素写入的目标数组中的索引。

length
Int32

要复制的元素数。

适用于