c# get all fields starts with code example
Example 1: c# get list of all class fields
using System.Reflection;
FieldInfo[] property_infos = typeof(Player).GetFields();
Example 2: c# get list of all class fields
// List the properties.
// Use the class you want to study instead of Form1.
PropertyInfo[] property_infos = typeof(Form1).GetProperties(
BindingFlags.FlattenHierarchy |
BindingFlags.Instance |
BindingFlags.NonPublic |
BindingFlags.Public |
BindingFlags.Static);