Как мне добавить атрибут в поле базового класса из дочернего класса?
#c# #.net #inheritance #custom-attributes #c# #.net #наследование #пользовательские атрибуты Вопрос: Базовый класс: public class XmlNameValueField : XmlBaseField { [XmlAttribute("n")] [Required] public string Name { get; set; } [XmlText] public string…