Inventory System
Search Results for

    Show / Hide Table of Contents

    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 Source

    DeepCopy()

    Create a deep copy of this TType.

    Declaration
    TType DeepCopy()
    Returns
    Type Description
    TType

    A deep copy of this TType.

    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

    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX