DataTable dt = new DataTable(); dt.Columns.Add("Id"); dt.Columns.Add("Name"); dt.Columns.Add("Age"); //新增資料 dt.Rows.Add("1", "張三", ...
確定! 回上一頁