Table of Contents

Interface ICloneable<T>

Namespace
AiDotNet.Interfaces
Assembly
AiDotNet.dll

Interface for objects that can be cloned or copied.

public interface ICloneable<T> where T : class

Type Parameters

T

The type of the object being cloned.

Methods

Clone()

Creates a shallow copy of this object.

T Clone()

Returns

T

DeepCopy()

Creates a deep copy of this object.

T DeepCopy()

Returns

T