Skip to content

Commit 9d0c94d

Browse files
authored
Fix language identifier (#18950)
1 parent 83e669a commit 9d0c94d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/programming-guide/classes-and-structs/extension-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ In the past, it was common to create "Collection Classes" that implemented the <
7575

7676
When using an Onion Architecture or other layered application design, it's common to have a set of Domain Entities or Data Transfer Objects that can be used to communicate across application boundaries. These objects generally contain no functionality, or only minimal functionality that applies to all layers of the application. Extension methods can be used to add functionality that is specific to each application layer without loading the object down with methods not needed or wanted in other layers.
7777

78-
```aspx-csharp
78+
```csharp
7979
public class DomainEntity
8080
{
8181
public int Id { get; set; }

0 commit comments

Comments
 (0)