惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

博客园 - 一滴海水

没文化真可怕,一个IIS7.5不能打开“默认文档”的问题,折腾半天 VS 2010 因为此版本的应用程序不支持其项目类型(.csproj)”的解决办法 使用Frame引用跨域站点页面时,Session失效问题解决方案 注册EXE文件为Windows服务.txt 常用正则表达式例子 (C#)Windows Shell 外壳编程系列 - ContextMenu 注册文件右键菜单 偶尔出现 指定 网络名不再可用 错误提示 MS-SQL Server 基础类(尤其是在文件下载时) - 一滴海水 在EXCEL中明明有值,却说值为空? 无法访问windows installer服务怎么办 System.Exception: System.Data.OracleClient 需要 Oracle 客户端软件 8.1.7 或更高版本 如何在win2003下安装sql2008[多次安装sql2008失败者必看] DataList做无间隔滚动 横向 - 一滴海水 - 博客园 [转]桌面轻量级数据库的选择:Access、SQLite、自己编写? WIN2003下IIS(WEB服务器)的负载均衡 如何设置IIS7支持ASP? - 一滴海水 - 博客园 C# 过滤脚本_ - 一滴海水 - 博客园 关于在asp.net 网站应用程序中添加.ashx文件的问题。 <meta http-equiv="X-UA-Compatible" content="IE=7" />的意思:将IE8使用IE7进行渲染,使网站在IE8上显示正常 - 一滴海水 “HtmlSelect”不能有类型为“DataBoundLiteralControl”的子级。
DataTable复制DataRow的方法
一滴海水 · 2009-09-15 · via 博客园 - 一滴海水

DataTable复制DataRow的方法

  1.用DataRow.ItemArray
  DataTable t=new DataTable();
  DataRow r=t.NewRow();
  r.ItemArray=oldRow.ItemArray;
  t.Rows.Add(r);
  
  2.用DataTable.ImportRow()
  t.ImportRow(oldRow);
  如此不会发生“此行已属于另一个表”

posted @ 2009-09-15 13:55  一滴海水  阅读(695)  评论(0)    收藏  举报

刷新页面返回顶部