System.Configuration.ConfigurationSettings.AppSettings' is obsolete: 'This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings'
-
Hi folks, I am new for .Net 2.0 and VS-2005. I getting warning message when i using following code, System.Configuration.ConfigurationManager.AppSettings' the error is following System.Configuration.ConfigurationSettings.AppSettings' is obsolete: 'This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings' I already added reference for System.Configuration to my project. can u plz clear my doubt.
-
Hi folks, I am new for .Net 2.0 and VS-2005. I getting warning message when i using following code, System.Configuration.ConfigurationManager.AppSettings' the error is following System.Configuration.ConfigurationSettings.AppSettings' is obsolete: 'This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings' I already added reference for System.Configuration to my project. can u plz clear my doubt.
hi, i think u are using a method that is used in VS2003 and is not any more supported in VS2005. they are giving u an alternative for that method so try using it. best regards, jamil abou khalil
-
Hi folks, I am new for .Net 2.0 and VS-2005. I getting warning message when i using following code, System.Configuration.ConfigurationManager.AppSettings' the error is following System.Configuration.ConfigurationSettings.AppSettings' is obsolete: 'This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings' I already added reference for System.Configuration to my project. can u plz clear my doubt.
Hi, Dont worry about the details. Just replace the following line in your code
System.Configuration.ConfigurationSettings.AppSettings
with
System.Configuration.ConfigurationManager.AppSettings
"A good programmer is someone who looks both ways before crossing a one-way street." -- Doug Linder
coolestCoder
-
Hi, Dont worry about the details. Just replace the following line in your code
System.Configuration.ConfigurationSettings.AppSettings
with
System.Configuration.ConfigurationManager.AppSettings
"A good programmer is someone who looks both ways before crossing a one-way street." -- Doug Linder
coolestCoder
-
Hi folks, I am new for .Net 2.0 and VS-2005. I getting warning message when i using following code, System.Configuration.ConfigurationManager.AppSettings' the error is following System.Configuration.ConfigurationSettings.AppSettings' is obsolete: 'This method is obsolete, it has been replaced by System.Configuration!System.Configuration.ConfigurationManager.AppSettings' I already added reference for System.Configuration to my project. can u plz clear my doubt.