public static IList<T> ConvertTo<T>(this DataTable table) { if (table == null) { return null; } List<DataRow> rows = new List<DataRow>();
確定! 回上一頁