Apply source data to existing object
var settings = new MySettings();
var source = GetSource(); // IConfigurationSource
source.ApplyTo(settings); // doesn't overwrite fields and properties not present in the sourceLast updated
Was this helpful?
var settings = new MySettings();
var source = GetSource(); // IConfigurationSource
source.ApplyTo(settings); // doesn't overwrite fields and properties not present in the sourceLast updated
Was this helpful?
Was this helpful?