标签:style blog color ar sp div log bs new
new DataRow 的方式:
DataTable pDataTable = new DataTable(); DataRow pRow = new DataRow();
正确的方式:
DataRow pRow=pDataTable.newRow();
错误 1 “System.Data.DataRow.DataRow(System.Data.DataRowBuilder)”不可访问,因为它受保护级别限制
标签:style blog color ar sp div log bs new
原文地址:http://www.cnblogs.com/wangzianan/p/4034892.html