摘要:
using System;using System.Security.Permissions;namespace System.ComponentModel { /**//// /// 容器类 /// [HostProtection(SecurityAction.LinkDemand, SharedState = true)] public class Conta... 阅读全文
摘要:
工厂模式是一种常见的模式,所有开始学习模式的人差不多第二个接触的就是工厂模式了(第一个是单例模式),工厂模式使用时的代码就像这样的: IAccountService accountService = Factory.GetService(); 工厂模式我的感觉好处是: - 客户使用接口访问服务,升级能力增强; - 可实现服务的配置; 容器我感觉是对工厂模式的改进,在.NET中关于容器可... 阅读全文