I have a RegistryKey
as a Key for my dictionary.
I cannot seem to set a value for that specific Key. Whatever I do, I keep getting a KeyNotFoundException
. The Key does exist, I created it one line earlier
e.g:
public Dictionary<RegistryKey, Dictionary<string, object>> subKeyNodes = new...
subKeyNodes.Add(mainKeyNode.CreateSubKey(keyName),new Dictionary<string, object>());
subKeyNodes[mainKeyNode.CreateSubKey(keyName)].Add("ROAR", "value");
The Add works fine. Adding with that key value always fails and I cannot seem to figure it out.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…