-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: create
IDeepCloneable
interface
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
namespace Barchart.Common.Interfaces; | ||
|
||
/// <summary> | ||
/// Provides a mechanism for deep cloning an object of type <typeparamref name="T"/>. | ||
/// </summary> | ||
/// <typeparam name="T"> | ||
/// The type of the object to clone. | ||
/// </typeparam> | ||
public interface IDeepCloneable<T> | ||
{ | ||
#region Methods | ||
|
||
/// <summary> | ||
/// Performs a deep clone of the object of type <typeparamref name="T"/>. | ||
/// </summary> | ||
/// <returns> | ||
/// A deep clone of the object. | ||
/// </returns> | ||
T DeepClone(); | ||
|
||
#endregion | ||
} |