--- tags: - 设计模式 - "#TODO" --- ``` csharp public class Seq{ public Command[] cmds; public T Context; } ``` ``` csharp public class Command{ public void Excute(T context){} } ```