Düzenle

Aracılığıyla paylaş


ListCopier<T>.DeepCopy Method

Definition

Overloads

DeepCopy(List<T>, CopyContext)

Creates a deep copy of the provided input.

DeepCopy(List<T>, List<T>, CopyContext)

Clones members from input and copies them to output.

DeepCopy(List<T>, CopyContext)

Creates a deep copy of the provided input.

public System.Collections.Generic.List<T> DeepCopy (System.Collections.Generic.List<T> input, Orleans.Serialization.Cloning.CopyContext context);
abstract member DeepCopy : System.Collections.Generic.List<'T> * Orleans.Serialization.Cloning.CopyContext -> System.Collections.Generic.List<'T>
override this.DeepCopy : System.Collections.Generic.List<'T> * Orleans.Serialization.Cloning.CopyContext -> System.Collections.Generic.List<'T>
Public Function DeepCopy (input As List(Of T), context As CopyContext) As List(Of T)

Parameters

input
List<T>

The input.

context
CopyContext

The context.

Returns

List<T>

A copy of input.

Implements

Applies to

DeepCopy(List<T>, List<T>, CopyContext)

Clones members from input and copies them to output.

public void DeepCopy (System.Collections.Generic.List<T> input, System.Collections.Generic.List<T> output, Orleans.Serialization.Cloning.CopyContext context);
abstract member DeepCopy : System.Collections.Generic.List<'T> * System.Collections.Generic.List<'T> * Orleans.Serialization.Cloning.CopyContext -> unit
override this.DeepCopy : System.Collections.Generic.List<'T> * System.Collections.Generic.List<'T> * Orleans.Serialization.Cloning.CopyContext -> unit
Public Sub DeepCopy (input As List(Of T), output As List(Of T), context As CopyContext)

Parameters

input
List<T>

The input.

output
List<T>

The output.

context
CopyContext

The context.

Implements

Applies to