这是我的第一篇文章!
我不是一个特别自信的程序员,但我到了那里.
我的问题是我有一个
static Dictionary<string,Dictionary<string,List<string>>> testDictionary = ...
如果Dictionary不包含当前键(字符串),我可以轻松添加键和另一个已填充的字典,如此…
testDictionary.Add(userAgentResult,allowDisallowDictionary);
这工作正常,当我尝试添加内部字典时,如果userAgentResult Key已经存在,我的问题就来了.
我希望这样做……
testDictionary[userAgentResult].Add(allowDisallowDictionary);
但.Add方法需要两个参数,即字符串键和列表值.所以我继续写这段代码……
//this list as the dictionary requires a list List<string> testDictionaryList = new List<string>(); //this method returns a string testDictionaryList.Add(regexForm(allowResult,url)); //this will add the key and value to the inner dictionary,the value,and then //add this value at the userAgentKey testDictionary[userAgentResult].Add(allowDisallowKey,testDictionaryList);