Edit

Share via


DictionaryCopier<TKey,TValue>.DeepCopy Method

Definition

Overloads

DeepCopy(Dictionary<TKey,TValue>, CopyContext)

Creates a deep copy of the provided input.

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

Clones members from input and copies them to output.

DeepCopy(Dictionary<TKey,TValue>, CopyContext)

Creates a deep copy of the provided input.

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

Parameters

input
Dictionary<TKey,TValue>

The input.

context
CopyContext

The context.

Returns

Dictionary<TKey,TValue>

A copy of input.

Implements

Applies to

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

Clones members from input and copies them to output.

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

Parameters

input
Dictionary<TKey,TValue>

The input.

output
Dictionary<TKey,TValue>

The output.

context
CopyContext

The context.

Implements

Applies to