TimeOnly
TimeOnlyJsonConverter provides functionality for converting a TimeOnly to or from JSON.
Usage
For example some serializable class:
class Timer
{
public TimeOnly StartFrom { get; set; }
}Deserialize:
var options = new JsonSerializerOptions();
options.Converters.Add(new TimeOnlyJsonConverter());
string json = "{ \"StartFrom\": \"11:15:30.000\" }";
Timer timer = JsonSerializer.Deserialize<Timer>(json, options);
TimeOnly startFrom = timer.StartFrom; // ---> 11:15:30.000Last updated
Was this helpful?