How to get all the names of the properties of the application parameters? enter image description here

    1 answer 1

    foreach (SettingsProperty currentProperty in Properties.Settings.Default.Properties) { Console.WriteLine(currentProperty.Name); }