I am making a UWP app and I need to store some settings for my app in roaming AppData. I am using this code to save it:
public bool[] options =
{
true
};
public bool[] saveCBState =
{
true,
true,
true
};
ApplicationDataContainer roamingSettings = ApplicationData.Current.RoamingSettings;
// Some not important code...
roamingSettings.Values[nameof(options)] = options;
if (options[0])
roamingSettings.Values[nameof(saveCBState)] = saveCBState;
else
roamingSettings.Values[nameof(saveCBState)] = null;
Where can I find the settings that I just saved on my computer?