WIP more creational patterns

This commit is contained in:
Claudiu Farcas
2021-04-17 17:48:22 +03:00
parent 0268776110
commit 744e5cd406
3 changed files with 130 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
using System;
using System.Threading.Tasks;
namespace design_patterns.creational.prototype
{
/// <summary>
/// Prototype is a creational design pattern that
/// lets you copy (clone, deep copy) existing objects without making
/// your code dependent on their classes.
/// </summary>
public class PrototypeSample
{
public static async Task Run()
{
Console.WriteLine("Creational - Prototype");
}
}
}