例如:當我創建一個新類的實例時,我該如何做到這一點,它必須得到一個參數?
class WebCrawler
{
List<string> currentCrawlingSite;
List<string> sitesToCrawl;
RetrieveWebContent retwebcontent;
public WebCrawler()
{
}
}
當我做WebCrawler = new WebCrawler(parameter here)
...
在構造函數中放入一個參數:'public WebCrawler(string parameter){}' – sll 2013-03-21 09:34:45
這些類型的問題不屬於這裏,請閱讀至少一些基本教程或C#和類設計的書。 – 2013-03-21 09:43:13