Edit

Share via


SortedSetCopier<T>.DeepCopy Method

Definition

Overloads

DeepCopy(SortedSet<T>, CopyContext)

Creates a deep copy of the provided input.

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

Clones members from input and copies them to output.

DeepCopy(SortedSet<T>, CopyContext)

Creates a deep copy of the provided input.

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

Parameters

input
SortedSet<T>

The input.

context
CopyContext

The context.

Returns

A copy of input.

Implements

Applies to

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

Clones members from input and copies them to output.

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

Parameters

input
SortedSet<T>

The input.

output
SortedSet<T>

The output.

context
CopyContext

The context.

Implements

Applies to