Edit

Share via


SortedListCopier<TKey,TValue>.DeepCopy Method

Definition

Overloads

DeepCopy(SortedList<TKey,TValue>, CopyContext)

Creates a deep copy of the provided input.

DeepCopy(SortedList<TKey,TValue>, SortedList<TKey,TValue>, CopyContext)

Clones members from input and copies them to output.

DeepCopy(SortedList<TKey,TValue>, CopyContext)

Creates a deep copy of the provided input.

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

Parameters

input
SortedList<TKey,TValue>

The input.

context
CopyContext

The context.

Returns

SortedList<TKey,TValue>

A copy of input.

Implements

Applies to

DeepCopy(SortedList<TKey,TValue>, SortedList<TKey,TValue>, CopyContext)

Clones members from input and copies them to output.

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

Parameters

input
SortedList<TKey,TValue>

The input.

output
SortedList<TKey,TValue>

The output.

context
CopyContext

The context.

Implements

Applies to