new DataRow 的方式:
DataTable pDataTable = new DataTable(); DataRow pRow = new DataRow();
正确的方式:
DataRow pRow=pDataTable.newRow();
本文共 205 字,大约阅读时间需要 1 分钟。
new DataRow 的方式:
DataTable pDataTable = new DataTable(); DataRow pRow = new DataRow();
正确的方式:
DataRow pRow=pDataTable.newRow();
转载于:https://www.cnblogs.com/wangzianan/p/4034892.html