How to distinguish empty/null/unset array property in appsettings.json?
I am using Microsoft.Extensions.Configuration in ASP.NET Core 9.0 to access configurations from the appsettings.json file: public class MySettings { public int? Foo { get; set; } public string[]? Bar{ get; set; } } appsettings.json: { [...] "MySettings": { "Foo": 42,…