我有一個字符串列表,需要將它轉換爲Datarow。 我試圖將列表<string>轉換爲c#中的DataRow
toReturn.Add("UserID");
toReturn.Add("UserName");
DataRow row = null;
row.ItemArray=toreturn.ToArray();
這是我拋出一個異常
Object reference not set to an instance of an object.
所以我試圖用
DataRow Row=new DataRow();
,這也是不allowed.Can有人幫我在這。
你可能不應該使用'DataRow'。你想做什麼? – SLaks