-
-
Save richlander/ff14d3e4b78f110c3c72abe58d9b9716 to your computer and use it in GitHub Desktop.
`JsonSerializer` support for fields
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk"> | |
<PropertyGroup> | |
<OutputType>Exe</OutputType> | |
<TargetFramework>net5.0</TargetFramework> | |
<LangVersion>preview</LangVersion> | |
</PropertyGroup> | |
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Text.Json; | |
var json = "{\"date\":\"2020-09-06T11:31:01.923395-07:00\",\"temperatureC\":-1,\"temperatureF\":31,\"summary\":\"Scorching\"} "; | |
var options = new JsonSerializerOptions() | |
{ | |
PropertyNameCaseInsensitive = true, | |
IncludeFields = true, | |
PropertyNamingPolicy = JsonNamingPolicy.CamelCase | |
}; | |
var forecast = JsonSerializer.Deserialize<Forecast>(json, options); | |
Console.WriteLine(forecast.Date); | |
Console.WriteLine(forecast.TemperatureC); | |
Console.WriteLine(forecast.TemperatureF); | |
Console.WriteLine(forecast.Summary); | |
var roundTrippedJson = JsonSerializer.Serialize<Forecast>(forecast, options); | |
Console.WriteLine(roundTrippedJson); | |
public class Forecast{ | |
public DateTime Date; | |
public int TemperatureC; | |
public int TemperatureF; | |
public string Summary; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Produces the following output: