Any examples of this?
e.g. an importing Configurate kind of thing?
Any examples of this?
e.g. an importing Configurate kind of thing?
hmm, there’s no Configurate callback. you have to use the Changed event of IDiffSpread.
[ImportingConstructor](ImportingConstructor)
MyConstructor([Config("Foo")](Config("Foo")) IDiffSpread<T> foo)
{
foo.Changed += MyChangedHandler;
}
MyChangedHandler(IDiffSpread<T> someSpread)
{
// do something
}
thanks!.. no text …