摘要: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