SortedSetCopier<T>.DeepCopy Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
DeepCopy(SortedSet<T>, CopyContext) |
Creates a deep copy of the provided input. |
DeepCopy(SortedSet<T>, SortedSet<T>, CopyContext) |
Clones members from |
DeepCopy(SortedSet<T>, CopyContext)
Creates a deep copy of the provided input.
public System.Collections.Generic.SortedSet<T> DeepCopy (System.Collections.Generic.SortedSet<T> input, Orleans.Serialization.Cloning.CopyContext context);
abstract member DeepCopy : System.Collections.Generic.SortedSet<'T> * Orleans.Serialization.Cloning.CopyContext -> System.Collections.Generic.SortedSet<'T>
override this.DeepCopy : System.Collections.Generic.SortedSet<'T> * Orleans.Serialization.Cloning.CopyContext -> System.Collections.Generic.SortedSet<'T>
Public Function DeepCopy (input As SortedSet(Of T), context As CopyContext) As SortedSet(Of T)
Parameters
- input
- SortedSet<T>
The input.
- context
- CopyContext
The context.
Returns
SortedSet<T>
A copy of input
.
Implements
Applies to
DeepCopy(SortedSet<T>, SortedSet<T>, CopyContext)
Clones members from input
and copies them to output
.
public void DeepCopy (System.Collections.Generic.SortedSet<T> input, System.Collections.Generic.SortedSet<T> output, Orleans.Serialization.Cloning.CopyContext context);
abstract member DeepCopy : System.Collections.Generic.SortedSet<'T> * System.Collections.Generic.SortedSet<'T> * Orleans.Serialization.Cloning.CopyContext -> unit
override this.DeepCopy : System.Collections.Generic.SortedSet<'T> * System.Collections.Generic.SortedSet<'T> * Orleans.Serialization.Cloning.CopyContext -> unit
Public Sub DeepCopy (input As SortedSet(Of T), output As SortedSet(Of T), context As CopyContext)
Parameters
- input
- SortedSet<T>
The input.
- output
- SortedSet<T>
The output.
- context
- CopyContext
The context.