2016-06-18 107 views
2

我想包括在我的C#代碼以下行,但由於某種原因,它被標記爲錯誤:爲什麼我在包含System.Collections.Generic時不能使用SynchronizedCollection?

 public SynchronizedCollection<Uri> allImages = new SynchronizedCollection<Uri>(); 

我試着包括using System.Collections.Generic但它並沒有解決問題。任何想法如何我可以得到一個SynchronizedCollection<T>在我的應用程序中工作?

+0

您是否收到錯誤?運行時還是編譯?什麼是錯誤?你試過谷歌嗎?您是否嘗試過:https://msdn.microsoft.com/en-us/library/ms668265(v=vs.110).aspx – Peter4499

回答

10

如果你看的文檔,你會看到它指出

Namespace: System.Collections.Generic
Assembly: System.ServiceModel (in System.ServiceModel.dll)

這意味着,雖然它在System.Collections.Generic命名空間,你需要確保你有System.ServiceModel.dll DLL included in your project as a refrence能夠使用類。

+0

謝謝!這爲我修好了。 –

+0

然後請標記接受的答案 –

相關問題