C#如何反射得到一个类的一个公共静态字段的值
public class Test { public static string s = "tt"; }
class Program { static void Main(string[] args) { Type type = typeof(Test); var fieldInfo = type.GetField("s"); var value = fieldInfo.GetValue(type); } }