我有一个名为" summoners"具有属性:
public string Name;
public string Id;
public int summonerLevel;
public string division;
public string tier;
public int leaguePoints;
要进行调试,我想创建一个List<PorpertyInfo>
并在其中存储每个属性名称,我有:
public void listProperties()
{
List<PropertyInfo> t = new List<PropertyInfo>();
foreach (var attr in this.GetType().GetProperties())
{
t.Add(attr);
}
} //-> breakpoint
我放了一个刹车点,它告诉我&#34; t&#34;
没有价值