Skip to content

Instantly share code, notes, and snippets.

@cch12313
cch12313 / StrategyPattern1.cs
Last active October 17, 2021 02:59
Strategy Pattern
using System;
namespace design_pattern
{
class Program
{
static void Main(string[] args)
{
Toyote car1 = new Toyote();
Bens car2 = new Bens();