.NET 中的 IoC 是什么
可能的重复:
什么是控制反转?
我不熟悉控制反转 (IoC)。什么是 IoC 以及应用程序如何从使用 IOC 中受益。它是如何用C#在.NET中实现的?
Possible Duplicate:
What is Inversion of Control?
I am not familiar with Inversion of Control (IoC). What is IoC and how can applications benefit from using IOC. How is it implemented in .NET with C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您有一组相互依赖的类,则很难将某些类替换为执行相同工作的另一个(更好/更便宜/更快)的类。为了使您的代码更加灵活,您可以使用依赖注入。
Ninject 是一个易于使用的 C# DI 框架。他们有一个关于这个主题的非常容易理解的教程。
链接:
http://ninject.org/learn
http://blog.andresays.org/2010/10/dependency-injection-with- ninject-and-asp-net-mvc/
祝你好运!
If you have a set of classes that depend on eachother, it's difficult to replace some class for another (better/cheaper/faster) class that does the same job. In order to make your code more flexible, you can use dependency injection.
An easy to use DI framework for C# is Ninject. They have a very understandable tutorial about this subject.
Links:
http://ninject.org/learn
http://blog.andresays.org/2010/10/dependency-injection-with-ninject-and-asp-net-mvc/
Good luck!