プロパティ 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
ですか??