私はクラスを持っています
public class News : Record
{
public News()
{
}
public LocaleValues Name { get; set; }
public LocaleValues Body;
}
そして私のLocaleValues
クラスでは:
public class LocaleValues : List<LocalizedText>
{
public string Method
{
get
{
var res = System.Reflection.MethodBase.GetCurrentMethod().Name;
return res;
}
}
}
次のような呼び出しを行うときに、プロパティ名Method
の文字列表現を返すプロパティが必要です。Name
var propName = new News().Name.Method;
どうすればこれを達成できますか?お時間をいただきありがとうございます!