How to list all Variables of Class

前端 未结 5 1762
情书的邮戳
情书的邮戳 2020-11-27 05:49

Is there a way to list all Variables (Fields) of a class in C#. If yes than could someone give me some examples how to save them in a List and get them maybe us

5条回答
  •  遥遥无期
    2020-11-27 06:24

    var fields = whateverYourClassType.GetType().GetFields().Select(f => f.Name).ToList();
    

提交回复
热议问题