Aspnet Core 代码无处不是 Builder 模式,举例:通用主机 IHostBuilder、 配置中间件的:IApplicationBuilder、等;
到处是 内置委托 Action<T1,...> 作为 函数的参数。
1、 参考一文《C#方法作参数——关于Action和Func的使用》 https://blog.csdn.net/wf824284257/article/details/83661843
------------------------------------------------------------------------------------------------------------------
注意:Builder 模式的具体 XXBuiler ,可以通过 “依赖注入”获取,解除绑定。
2、《C#中的Builder模式》 https://blog.csdn.net/deatharthas/article/details/87892079
3、《C#中的Builder模式》 https://blog.csdn.net/v2810769/article/details/77823555
4、《C#设计模式系列:建造者模式(Builder)》 https://www.cnblogs.com/libingql/p/3633527.html
5、