Contaienr size scan WIP

This commit is contained in:
2023-08-02 08:25:19 +02:00
parent c95be170ed
commit 1713973c3a
35 changed files with 760 additions and 125 deletions

View File

@@ -10,7 +10,7 @@ public sealed class CombineProperty<TFrom, TTo> : DeclarativePropertyBase<TTo>
_combiner = combiner;
}
public async Task AddSource(IDeclarativeProperty<TFrom> source)
public async Task AddSourceAsync(IDeclarativeProperty<TFrom> source)
{
if (_sourceProperties.Contains(source)) return;
_sourceProperties.Add(source);