我正在尝试创建一个自定义属性来显示属性 CountryText 的值
[DisplayNameProperty("CountryText")]
public string Country { get; set; }
public string CountryText { get; set; }
这是属性的代码
namespace Registration.Front.Web.Validators
{
public class RegistrationDisplayNameAttribute:DisplayNameAttribute
{
private readonly PropertyInfo _proprtyInfo;
public RegistrationDisplayNameAttribute(string resourceKey):base(resourceKey)
{
}
public override string DisplayName
{
get
{
if(_proprtyInfo==null)
}
}
}
}
如何进行反思以获取resourceKey
在我的属性代码中命名的字段的值?