Assuming there are 5 items in the settings file (MySetting1 to MySetting5), why does PropertyValues have 0 items while Properties has the correct number?
Console.WriteLine( Properties.Settings.Default.PropertyValues.Count ); // Displays 0
Console.WriteLine( Properties.Settings.Default.Properties.Count ); // Displays 5