12345678910111213141516171819202122232425 |
- namespace AmrControl.Common
- {
- /// <summary>
- /// 代理处理类
- /// </summary>
- public class Proxy
- {
- /// <summary>
- /// 执行器
- /// </summary>
- private readonly Action _action;
- public Proxy(Action action)
- {
- _action = action;
- }
- /// <summary>
- /// 执行代理逻辑
- /// </summary>
- public void Invoke()
- {
- _action();
- }
- }
- }
|