- 分享
- 0
- 人气
- 0
- 主题
- 46
- 帖子
- 3604
- UID
- 123250
- 积分
- 6456
- 阅读权限
- 23
- 注册时间
- 2008-2-7
- 最后登录
- 2017-5-1
- 在线时间
- 5029 小时
|
不使用第三變數互换變數值小技巧:
startPoint *= endPoint;
endPoint /= startPoint;
startPoi ...
Super-Tomato 发表于 2010-7-22 02:03 AM
哈哈哈哈哈~ 你那个对换的招式强。不过换成String 的变数就没办法了吧。==
不过我的是参考课本的写法,所以我也没想太多,直接Follow了。
不过刚才你的回复给 zech 的, 我觉得他说的不是 Database 的Datatable, 应该是.net 的Datatable
- static void Main()
- {
- //
- // Get the DataTable.
- //
- DataTable table = GetTable();
- //
- // Use DataTable here with SQL, etc.
- //
- }
- /// <summary>
- /// This example method generates a DataTable.
- /// </summary>
- static DataTable GetTable()
- {
- //
- // Here we create a DataTable with four columns.
- //
- DataTable table = new DataTable();
- table.Columns.Add("Dosage", typeof(int));
- table.Columns.Add("Drug", typeof(string));
- table.Columns.Add("Patient", typeof(string));
- table.Columns.Add("Date", typeof(DateTime));
- //
- // Here we add five DataRows.
- //
- table.Rows.Add(25, "Indocin", "David", DateTime.Now);
- table.Rows.Add(50, "Enebrel", "Sam", DateTime.Now);
- table.Rows.Add(10, "Hydralazine", "Christoff", DateTime.Now);
- table.Rows.Add(21, "Combivent", "Janet", DateTime.Now);
- table.Rows.Add(100, "Dilantin", "Melanie", DateTime.Now);
- return table;
- }
复制代码 原文章 : http://dotnetperls.com/datatable-use |
|