Skip to content

Commit 8597496

Browse files
Merge pull request #49280 from ShawnKupfer/WB1684
User Feedback 375769 - Fix incorrect code per UUF feedback
2 parents 781e4ee + 87a1b55 commit 8597496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

learn-pr/language/dotnet-files/includes/9-exercise-read-write-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In this exercise, you complete the project by reading the .json files, adding up
1717
1. At the top of `Program.cs`, add `using Newtonsoft.Json`:
1818

1919
```csharp
20-
using System.Text.Json;
20+
using Newtonsoft.Json;
2121
```
2222

2323
1. In `Program.cs` directly under the `FindFiles` method, [add a new `record`](/dotnet/csharp/language-reference/builtin-types/record/) that models the *sales.json* data:

0 commit comments

Comments
 (0)