Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
class XmlAttributeConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value is IEnumerable<XmlNode>) { return ((IEnumerable<XmlNode>)value).OfType<XmlAttribute>().Select(xa => xa.Value); } return value; } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } }
using System; using System.Collections.Generic; using System.Linq;