-2
一個鍵我不添加如何字典包含多個項目到另一個字典作爲值字典作爲值到另一個詞典
Dictionary<string,Dictionary<string,double>> proptest=new Dictionary<string,Dictionary<string,double>>
if (proptest.ContainsKey(filenametest))
{
proptest[filenametest].Add(filenametraining, NB) ;
}
else
{
proptest.Add(filenametest, new Dictionary<string, double> { { filenametraining, NB } });
}
結果爲: {[10171.txt,System.Collections.Generic。我想要的結果是: {[10171.txt:(cat10 0.4)(cat3 0.6)]}
[多值字典的可能的複製](https://stackoverflow.com/questions/569903/multi-value-dictionary),你也可以用[Tuple](https://msdn.microsoft.com/de-de/library/system.tuple v = vs.110)的.aspx)。 – jAC
什麼是問題?你可以說得更詳細點嗎? – eocron
如何將字典作爲值添加到另一個字典中的一個鍵? – Jojo