HashSetCopier<T>.DeepCopy 方法

定义

重载

DeepCopy(HashSet<T>, CopyContext)

创建提供的输入的深层副本。

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

input 克隆成员并将其复制到 output

DeepCopy(HashSet<T>, CopyContext)

创建提供的输入的深层副本。

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

参数

input
HashSet<T>

输入。

context
CopyContext

上下文。

返回

HashSet<T>

input 的副本。

实现

适用于

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

input 克隆成员并将其复制到 output

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

参数

input
HashSet<T>

输入。

output
HashSet<T>

输出。

context
CopyContext

上下文。

实现

适用于