You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-11Lines changed: 8 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,7 @@ Provides Dependency Injection (DI) for Inversion of Control (IoC) between classe
24
24
25
25
A Dependency Injection (DI) Container provides functionality and automates many of the tasks involved in Object Composition, Interception, and Lifetime Management. It's an engine that resolves and manages object graphs. These DI Containers depend on the static information compiled into all classes. Then using reflection they can analyze the requested class and figure out which Dependencies are required.
26
26
27
-
This API mirrors as close as possible the official .NET
28
-
[DependencyInjection](https://docs.microsoft.com/en-us/dotnet/core/extensions/dependency-injection). Exceptions are mainly derived from the lack of generics support in .NET nanoFramework.
27
+
This API mirrors as close as possible the official .NET [DependencyInjection](https://docs.microsoft.com/en-us/dotnet/core/extensions/dependency-injection). Exceptions are mainly derived from the lack of generics support in .NET nanoFramework.
29
28
30
29
The .NET nanoFramework [Generic Host](https://github.com/nanoframework/nanoFramework.Hosting) provides convenience methods for creating dependency injection (DI) application containers with preconfigured defaults.
31
30
@@ -35,9 +34,9 @@ The .NET nanoFramework [Generic Host](https://github.com/nanoframework/nanoFrame
35
34
36
35
Creating a dependency injection container required three basic components.
37
36
38
-
* Object Composition - A object composition defining a set of objects to create and couple.
39
-
* Registering Services - Define an instance of the ServiceCollection and register the object composition with a specific service lifetime.
40
-
* Service Provider - Creating a service provider to retrieve the object.
37
+
- Object Composition - A object composition defining a set of objects to create and couple.
38
+
- Registering Services - Define an instance of the ServiceCollection and register the object composition with a specific service lifetime.
39
+
- Service Provider - Creating a service provider to retrieve the object.
0 commit comments