可能重複:
How can I easily convert DataReader to List<T>?如何將DataReader中的值放入列表<T>?
我希望把它從DataReader對象來在通用列表中的數據。我做了這樣的,但它不工作...
我在foreach行得到拋出異常錯誤!
SqlDataReader pointreader = cmd2.ExecuteReader();
var pointt = new List<int>();
while (pointreader.Read())
{
foreach (int item in pointreader)
{
pointt.Add(item);
if (pointt.Contains(point))
{
matchpoint = item;
}
}
}
可能從這裏[link](http://stackoverflow.com/questions/1464883/how-can-i-easily-convert-datareader-to-listt) – Dotnet 2011-05-18 09:26:13
請將您的變量名稱重命名爲英文 - 寫 – abatishchev 2011-05-18 09:40:32
我已編輯abatishchev – PsyGnosis 2011-05-18 10:06:33