0

I have a class called "summoners" with properties :

public string Name;
public string Id;
public int summonerLevel;
public string division;

public string tier;
public int leaguePoints;

To debug, i wanted to create a List<PorpertyInfo> and store every property name in it, i have :

        public void listProperties()
    {
        List<PropertyInfo> t = new List<PropertyInfo>();

        foreach (var attr in this.GetType().GetProperties())
        {
            t.Add(attr);
        }
    } //-> breakpoint

I placed a brakepoint and it tells me that there is no value in "t"

Yooooomi
  • 895
  • 1
  • 8
  • 20

0 Answers0