Advertisement
pablojf

test_Strategy

Mar 31st, 2020
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.35 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace Patrones.Comportamiento.Strategy
  8. {
  9.     /// <summary>
  10.     /// The 'Strategy' abstract class
  11.     /// </summary>
  12.     abstract public class SortStrategy
  13.     {
  14.         public abstract void Sort(List<string> list);
  15.     }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement