Skip to content

Commit 449fef8

Browse files
authored
Update RoundtripToUtf8.cs (#45961)
1 parent 8fc7e91 commit 449fef8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/standard/serialization/system-text-json/snippets/how-to/csharp/RoundtripToUtf8.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public static void Main()
2222
};
2323

2424
// <Serialize>
25-
byte[] jsonUtf8Bytes =JsonSerializer.SerializeToUtf8Bytes(weatherForecast);
25+
byte[] jsonUtf8Bytes = JsonSerializer.SerializeToUtf8Bytes(weatherForecast);
2626
// </Serialize>
2727

2828
Console.WriteLine(Encoding.UTF8.GetString(jsonUtf8Bytes));

0 commit comments

Comments
 (0)