NullableCopier<T>.DeepCopy(Nullable<T>, CopyContext) 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.
Creates a deep copy of the provided input.
public T? DeepCopy (T? input, Orleans.Serialization.Cloning.CopyContext context);
abstract member DeepCopy : Nullable<'T (requires 'T : struct)> * Orleans.Serialization.Cloning.CopyContext -> Nullable<'T (requires 'T : struct)>
override this.DeepCopy : Nullable<'T (requires 'T : struct)> * Orleans.Serialization.Cloning.CopyContext -> Nullable<'T (requires 'T : struct)>
Public Function DeepCopy (input As Nullable(Of T), context As CopyContext) As Nullable(Of T)
Parameters
- input
- Nullable<T>
The input.
- context
- CopyContext
The context.
Returns
Nullable<T>
A copy of input
.