SortedList<string, string> sortedList = new SortedList<string, string>(StringComparer.CurrentCultureIgnoreCase); foreach (PropertyInfo pi in propertyInfos) {
if (pi.GetValue(obj, null) != null) { if (pi.Name == "Sign" || pi.Name == "Sign_Type") { continue; } sortedList.Add(pi.Name.ToLower(), pi.GetValue(obj, null).ToString()); } } return sortedList; &nbs 上一页 [1] [2] [3] [4] [5] [6] [7] [8] 下一页 |