摘要:
using System;using System.Collections.Generic;using System.Data;using System.Reflection;using System.ComponentModel;public static class DataTableUtility{ /// /// DataTable To IList /// /// /// /// public static IList ToList(this DataTable dt) { if (dt == null || d... 阅读全文
posted @ 2013-11-27 09:53 文斌1988 阅读(1836) 评论(1) 推荐(0) 编辑