Browse Source

Fixed markdown formatting to show code snippet

pull/2420/head
Charlie U GitHub 2 years ago
parent
commit
5955c0abbc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      docs/guides/dependency_injection/injection.md

+ 1
- 1
docs/guides/dependency_injection/injection.md View File

@@ -16,7 +16,7 @@ This can be done through property or constructor.
Services can be injected from the constructor of the class.
This is the preferred approach, because it automatically locks the readonly field in place with the provided service and isn't accessible outside of the class.

[!code-csharp[Property Injection(samples/property-injecting.cs)]]
[!code-csharp[Property Injection](samples/property-injecting.cs)]

## Injecting through properties



Loading…
Cancel
Save