Skip to content

Commit 87a1b55

Browse files
committed
User Feedback 375769 - Fix incorrect code per UUF feedback
1 parent 781e4ee commit 87a1b55

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)