private void GetInfo<T>(T info) { Type t = info.GetType(); System.Reflection.PropertyInfo[] list = t.GetProperties(); // --- 获取项目名称 List<string> nameList = new List<string>(); List<object> valueList = new List<object>(); foreach (var pro in list) { nameList.Add(pro.Name); //项目名称 valueList.Add(pro.GetValue(info, null)); // 项目值 } }
以上代码可以取到数据的值和名称,具体使用时候 自己修改代码!