摘要:
public class HomeController : Controller { public ActionResult Index() { //核心对象 IKernel ninjectKernel = new StandardKernel(); ninjectKernel.Bind().To(); //方案1:获取接口实例 IValueCaculator calImpl = ninjectKernel.Get(); ... 阅读全文
摘要:
根据effective c#一书,作者建议一般可以放在初始化器中,除非1)初始化为null或02)有若干个构造函数3)需要异常捕获 阅读全文