This May 14, I had a great time at Chicago Code Camp. Thanks to the organizing team to have organized the event really well. It was great to meet Microsoft MVP David Giard who I am thankful to have given me the opportunity to speak at his poular TV show...
Strategy Pattern using Func An alternative to using Strategy pattern using interfaces is Strategy Pattern using delegates. • Create a class with all the different strategies. public class Calculator { public static int Add(int num1, int num2) { return...