Apply source data to existing object

Requires: abstractions module, main module.

var settings = new MySettings();

var source = GetSource(); // IConfigurationSource

source.ApplyTo(settings); // doesn't overwrite fields and properties not present in the source

Last updated