有没有办法为函数提供名称,然后返回具有该名称的给定对象上的字段或属性的值?我尝试使用 null-coalesce 运算符来解决它,但显然它不喜欢不同的类型(这对我来说也有点奇怪,因为 null 是 null)。我可以将它分成 if nulls,但必须有更好的方法来做到这一点。这是我的函数,带有Comparison
对象的两行无法编译,但我会将它们留在那里以显示我正在尝试做的事情。
private void SortByMemberName<T>(List<T> list, string memberName, bool ascending)
{
Type type = typeof (T);
MemberInfo info = type.GetField(memberName) ?? type.GetProperty(memberName);
if (info == null)
{
throw new Exception("Member name supplied is neither a field nor property of type " + type.FullName);
}
Comparison<T> asc = (t1, t2) => ((IComparable) info.GetValue(t1)).CompareTo(info.GetValue(t2));
Comparison<T> desc = (t1, t2) => ((IComparable) info.GetValue(t2)).CompareTo(info.GetValue(t1));
list.Sort(ascending ? asc : desc);
}
我听说过可以使用动态 LINQ 的东西,但是为了学习,我按照自己的方式做。