Interface ICopyable<TType>
Make this able to be copied.
Namespace: InventorySystem.Utils
Assembly: InventorySystem.dll
Syntax
public interface ICopyable<TType>
Type Parameters
Name | Description |
---|---|
TType | Type of class implementing this that can be copied. |
Methods
| Edit this page View SourceDeepCopy()
Create a deep copy of this TType
.
Declaration
TType DeepCopy()
Returns
Type | Description |
---|---|
TType | A deep copy of this |
Remarks
Deep Copy: A deep copy of an object is a copy whose properties do not share the same references (point to the same underlying values) as those of the source object from which the copy was made. https://developer.mozilla.org/en-US/docs/Glossary/Deep_copy