为什么我的PropertyInfo列表显示count = 0

时间:2016-06-25 22:23:07

标签: c# reflection

我有一个名为" 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;

没有价值

0 个答案:

没有答案