比方说,我有一个像这样的Print方法:
private static void Print(IEnumerable items) { // Print logic here }
我想将一个集合类传递给这个Print方法,该方法应该像表格一样打印所有字段.例如,我的输入集合可以是“人员”或“订单”或“汽车”等.
如果我将“Cars”集合传递给Print方法,它应该打印“Car”详细信息列表,例如:Make,Color,Price,Class等.
直到运行时我才会知道集合的类型.我尝试使用TypeDescriptors和PropertyDescriptorCollection实现了一个解决方案.但是,我觉得这不是一个好的解决方案.有没有其他方法可以使用表达式或泛型来实现这一点?
解决方法
您可以像这样实现Print:
static void Print<T>(IEnumerable<T> items) { var props = typeof(T).GetProperties(); foreach (var prop in props) { Console.Write("{0}\t",prop.Name); } Console.WriteLine(); foreach (var item in items) { foreach (var prop in props) { Console.Write("{0}\t",prop.GetValue(item,null)); } Console.WriteLine(); } }
它只是循环遍历类的每个属性以打印属性的名称,然后打印每个项目,并为每个项目打印属性的值.
我认为你应该在这里使用泛型(而不是其他答案中的建议);您希望集合中的项目是单一类型,以便您可以打印表头.
对于表格格式,您可以检查this question的答案.