Strategy Design Pattern in C#

preview_player
Показать описание
In this video I explain the strategy design pattern using C# programming language. I will also show a practical example of it's usage.
Рекомендации по теме
Комментарии
Автор

Thanks! That was really helpful. I recently took part in recruiting challenge that needed a strategy pattern, and it really is helpful this strategy.

Tymonello
Автор

are you free to help with my project now?

dagmawegebere
Автор

InvoiceProvider obj = new InternalInvoiceProvider();
obj.PrintInvoice();
obj = new ExternalInvoiceProvider();
obj.PrintInvoice();

It will also execute two PrintInvoice method of two different class with single object, then why we have to follow all. Please explain, waiting for the reply

sudippachal