How to get fields and their values from a static class in referenced assembly
Using reflection, you will need to look for fields; these are not properties. As you can see from the following code, it looks for public static members: class Program { static void Main(string[] args) { Type t = typeof(A7); FieldInfo[] fields = t.GetFields(BindingFlags.Static | BindingFlags.Public); foreach (FieldInfo fi in fields) { Console.WriteLine(fi.Name); Console.WriteLine(fi.GetValue(null).ToString()); } Console.Read(); … Read more