摘要:
1.来自 idior(MVP)的文章,很有收获的。From: http://www.cnblogs.com/idior/archive/2005/04/25/144573.html.Net的新功能: 泛型,匿名方法,新的迭代器 这些功能都是与集合的应用紧密相关的,希望以后能有新的发现,将这个系列完善.欢迎提出你的看法 .Net2.0的集合操作 --- What i know? .Net2.0的集合... 阅读全文
摘要:
进程、线程相关资源: 阅读全文
摘要:
1、只复制一个表的结构select * into [tableName1] from [tableName2] -- 表的复制select top 0 * into [tableName1] from [tableName2] -- top 0 的妙用select * into b from a where 1<>1 --where 1<>1 阅读全文