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