StackCopier<T>.DeepCopy 方法

定义

重载

DeepCopy(Stack<T>, CopyContext)

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

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

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

DeepCopy(Stack<T>, CopyContext)

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

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

参数

input
Stack<T>

输入。

context
CopyContext

上下文。

返回

Stack<T>

input 的副本。

实现

适用于

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

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

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

参数

input
Stack<T>

输入。

output
Stack<T>

输出。

context
CopyContext

上下文。

实现

适用于