所以我使用以下实用程序从类的实例中获取字段/属性的名称......
public static string FieldName<T>(Expression<Func<T>> Source)
{
return ((MemberExpression)Source.Body).Member.Name;
}
这允许我执行以下操作:
public class CoolCat
{
public string KaratePower;
}
public class Program
{
public static Main()
{
public CoolCat Jimmy = new CoolCat();
string JimmysKaratePowerField = FieldName(() => Jimmy.KaratePower);
}
}
当我需要字段名称的字符串表示时,这对于序列化和其他时候非常有用。
但是现在,我希望能够在没有类实例的情况下获取字段名称 - 例如,如果我正在设置一个表并希望将列的 FieldNames 动态链接到类中的实际字段(所以重构等不会破坏它)。
基本上,我觉得我只是不太了解如何完成此操作的语法,但我想它看起来像这样:
public static string ClassFieldName<T>(Func<T> PropertyFunction)
{
// Do something to get the field name? I'm not sure whether 'Func' is the right thing here - but I would imagine that it is something where I could pass in a lambda type expression or something of the sort?
}
public class Program
{
public static Main()
{
string CatsPowerFieldName = ClassFieldName<CoolCat>((x) => x.KaratePower);
// This 'CatsPowerFieldName' would be set to "KaratePower".
}
}
我希望这是有道理的——我对这个主题的词汇不是很好,所以我知道这个问题有点含糊。