The following code works fine:
string api_url = ConfigurationSettings.AppSettings["api-url"].ToString(); with a warning message as follows:
'System.Configuration.ConfigurationSettings.AppSettings' is obsolete: '"This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings"'
As suggested by the warning message, I tried replacing ConfigurationSettings.AppSettings with ConfigurationManager.AppSettings
string api_url = ConfigurationManager.AppSettings["api-url"].ToString(); Now an error message appears, stating:
The name 'ConfigurationManager' does not exist in the current context
These are the namespaces imported:
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Configuration; Please help me.