This commit is contained in:
zzzisfunnyboy
2025-06-30 00:49:44 +08:00
parent deb24e4b04
commit 694f4db9dc
25 changed files with 16 additions and 21 deletions

View File

@@ -0,0 +1,18 @@
---
tags:
- 设计模式
---
``` csharp
public class Seq<T>{
public Command<T>[] cmds;
public T Context;
}
```
``` csharp
public class Command<T>{
public void Excute(T context){}
}
```