作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用ninject(版本4.0.0)来解决我的Windows服务程序中的依赖关系,我见过quite a few tutorials ,他们都使用 StandardKernel
初始化ninject内核如下:
IKernel kernel = new StandardKernel();
kernel.Load(Assembly.GetExecutingAssembly());
StandardKernel
时收到以下警告:
'StandardKernel' is obsolete: 'Use StandardKernelConfiguration and StandardReadonlyKernel'
StandardKernelConfiguration
和
StandardReadonlyKernel
?
最佳答案
我没有意识到 ninject 版本 4.0.0 处于测试阶段,但以下语法对我有用:
IReadOnlyKernel kernel = new KernelConfiguration(new MyModule()).BuildReadonlyKernel();
关于c# - “标准内核”已过时 : `Use StandardKernelConfiguration and StandardReadonlyKernel` ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60689012/
我想使用ninject(版本4.0.0)来解决我的Windows服务程序中的依赖关系,我见过quite a few tutorials ,他们都使用 StandardKernel初始化ninject内
我是一名优秀的程序员,十分优秀!