.NET 中的 IoC 是什么

发布于 2024-10-13 08:59:45 字数 230 浏览 4 评论 0原文

可能的重复:
什么是控制反转?

我不熟悉控制反转 (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柠檬色的秋千 2024-10-20 08:59:45

如果您有一组相互依赖的类,则很难将某些类替换为执行相同工作的另一个(更好/更便宜/更快)的类。为了使您的代码更加灵活,您可以使用依赖注入

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!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文