I store serialized data in the registry. I want to use a foreach loop to iterate through that data. On each iteration I would like to add that data to a dictionary. As follows:
// Create dictionary
myDictionary = new Dictionary();
// iterate through previously stored data and add it to Dictionary
foreach (object x in Application.UserAppDataRegistry._____) { myDictionary.add(x); }
Question: Is there a simple method that retrieves all data in the registry?