【发布时间】:2011-12-12 15:47:40
【问题描述】:
基类:
public class XmlNameValueField : XmlBaseField
{
[XmlAttribute("n")]
[Required]
public string Name { get; set; }
[XmlText]
public string Value { get; set; }
}
儿童班:
public class DateField : XmlNameValueField
{
}
在子类字段中Name必须有一个附加属性
[DataType (DataType.EmailAddress)]
【问题讨论】:
标签: c# .net inheritance custom-attributes