0
我希望能夠遍歷DataRow列表,如下所示。類型不匹配,無法將System.Data.DataRowCollection分配給System.Data.DataRow數組
ArrayOfRows: Array of DataRow;
ArrayOfRows := dbtable.Rows;
for each therow in ArrayofRows do
begin
ITagList.Add(therow['TAGNAME'].ToString);
end;
,但我一直運行到錯誤,
「類型不匹配,不能分配給System.Data.DataRowCollection的的System.Data.DataRow陣列 。」
如何遍歷數據表中的行列表?
由於提前,