我有一个字符串列表,需要将其转换为 Datarow。
我试过了
toReturn.Add("UserID");
toReturn.Add("UserName");
DataRow row = null;
row.ItemArray=toreturn.ToArray();
这是给我一个异常(exception)
Object reference not set to an instance of an object.
所以我试过
DataRow Row=new DataRow();
这也是不允许的。有人可以帮助我吗?
最佳答案
DataRow
只能与 DataTable
一起存在。
使用适当的列创建 DataTable
,然后调用 table.Rows.Add(list.ToArray())
。
但是,您可能一开始就不应该使用 DataRow
。
关于c# - 在 C# 中将 List<string> 转换为 DataRow,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21324760/