19 lines
205 B
Markdown
19 lines
205 B
Markdown
---
|
|
tags:
|
|
- 设计模式
|
|
- "#TODO"
|
|
---
|
|
|
|
|
|
``` csharp
|
|
public class Seq<T>{
|
|
public Command<T>[] cmds;
|
|
public T Context;
|
|
}
|
|
```
|
|
|
|
``` csharp
|
|
public class Command<T>{
|
|
public void Excute(T context){}
|
|
}
|
|
``` |