コード例 #1
0
 /// <inheritdoc/>
 void IDictionaryPropertyBagVisitor.Visit <TDictionary, TKey, TValue>(IDictionaryPropertyBag <TDictionary, TKey, TValue> properties, ref TDictionary container)
 {
     foreach (var property in properties.GetProperties(ref container))
     {
         ((IPropertyAccept <TDictionary>)property).Accept(this, ref container);
     }
 }