整理笔记 2025.6.20

This commit is contained in:
zzz
2025-06-20 09:51:50 +08:00
parent 1643a4a3f9
commit 057b9ca18a
32 changed files with 274 additions and 365 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){}
}
```