Пример #1
0
 public void Add(IConverterFamily family)
 {
     _families.Add(family);
 }
Пример #2
0
 public void Add(IConverterFamily family)
 {
     _families.Add(family);
 }
        public ValueConverter FindConverter(PropertyInfo property)
        {
            IConverterFamily family = _families.FirstOrDefault(x => x.Matches(property));

            return(family == null ? null : family.Build(this, property));
        }