線程我有這個類:如何開始與lambda表達式C#
public class Statistics
{
List<string> _lsit;
public List<string> ipList
{
get { return _lsit; }
set { _lsit = value; }
}
string _Path = @"C:\Program Files\myApp.exe";
string _Path = "";
ProcessStartInfo ps = null;
public getStatistics(string Path)
{
_Path = Path;
getStatistics();
}
}
我要啓動該功能統計不同THEAD,我沒有財產以後這樣的:
Statistics stat = new Statistics (some path);
Thread<List<string>> lList = new Thread<List<string>>(() => tsharkIps.getStatistics());
但是編譯器錯誤說:「非泛型類型'System.Threading.Thread'不能用於類型參數」
我沒有寫我所有的類,只想知道熱啓動線程
感謝
我認爲你正在尋找的,而不是線程任務 ...和那裏你應該使用Task.Factory來啓動任務;) –
Carsten
2012-03-06 07:24:48
請閱讀http://tinyurl.com/so-hints,並更多關注你的示例代碼(並清晰)爲你的下一個問題。 – 2012-03-06 07:39:00