在C# 3.5中,从类内部查找类的特定属性名称
原文:Finding the name of a particular property of a class from within the class in C# 3.5
原文:Finding the name of a particular property of a class from within the class in C# 3.5
给定下面的类,如何找到一个特定属性的名称? public class Student { public int Grade { get; set; } public string ... } 给定类似下面的类,我如何找到一个特定属性的名称?