C# 技巧
文章平均质量分 60
nsonline
无
展开
-
PetShop4.0的一个安装问题
错误提示如图片,暂未找到解决办法。没看懂什么错误。The cabinet file _79441DD141F518DE509E0DE39E19B02E required for this installation is corrupt and cannot be used. this could indicate a network error, an error reading from原创 2008-07-20 17:56:00 · 575 阅读 · 0 评论 -
DataTable拷贝DataTable的数据
在开发的过程中,有时候我们需要对两个数据结构一样的DataTable进行DataRow的拷贝.DataTable dt1 = new DataTable();DataTable dt2 = new DataTable()假如dt1跟dt2的结构一样,并且有数据。将dt2的行拷贝到dt1如果只是下面那样写是错的:dt1.Rows.Add(dt2.Rows[0]);会报错,说DataRow已经被占原创 2008-06-07 14:56:00 · 682 阅读 · 0 评论