鍵我有一個使用列表條目作爲字典
List<string> myList = new List<string>();
告訴我所有的事情,我應該在一些輸入數據找到。我想將其轉換爲
Dictionary<string, bool> myDict = Dictionary<string, bool>();
其中字典鍵與列表條目相同,並且所有值都是false。然後我會遍歷數據,並在找到元素時更新字典值。
這看似簡單,但
Dictionary<string, bool> myDict = myList.ToDictionary<string, bool>(x => false);
不會因爲一個錯誤的工作:
Cannot implicitly convert type
Dictionary<bool, string>
toDictionary<string, bool>
「不起作用」=>雖然專家清楚問題是什麼,但問題肯定會包括實際的錯誤。 – siride 2013-02-11 04:26:50
siride - 的確如此,謝謝。 – Melanie 2013-02-11 04:34:00
downvotes可能是因爲短語「它不起作用」沒有進一步的信息。你已經解決了這個問題,但人們可能沒有回來刪除他們的提議。 – siride 2013-02-11 14:07:37