Interface IDeepCloneable<T>
A generic interface for a deeply cloneable type.
Namespace: SixLabors.ImageSharp
Assembly: SixLabors.ImageSharp.dll
Syntax
public interface IDeepCloneable<out T> where T : class
Type Parameters
Name | Description |
---|---|
T | The type of object to clone. |
Methods
| Edit this page View SourceDeepClone()
Creates a new T
that is a deep copy of the current instance.
Declaration
T DeepClone()
Returns
Type | Description |
---|---|
T | The |