HashSetCopier<T>.DeepCopy 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
DeepCopy(HashSet<T>, CopyContext) |
创建提供的输入的深层副本。 |
DeepCopy(HashSet<T>, HashSet<T>, CopyContext) |
从 |
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
上下文。