Open DarthMazut opened 1 year ago
With .NET 7 and C# 11 it's possible to declare static abstract methods. This can be leverage by ISettingsSection interface.
static abstract
ISettingsSection
Instaed of current:
T settings = new(); await settings.FillValuesAsync(data);
it could be possible
T settings = T.FromString(data);
With .NET 7 and C# 11 it's possible to declare
static abstract
methods. This can be leverage byISettingsSection
interface.Instaed of current:
it could be possible