appsettings question

  • Thread starter Thread starter Joe Van Meer
  • Start date Start date
J

Joe Van Meer

Hi all,

Why would I be getting a "Type 'AppSettings' is not defined" error when I
have the configuration namespace referenced in my project? I am trying to
convert my vb6 app and I want to use a configuration file. 1.1 framework

Cheers & thx, Joe
 
Joe Van Meer said:
Why would I be getting a "Type 'AppSettings' is not defined" error when I
have the configuration namespace referenced in my project? I am trying to
convert my vb6 app and I want to use a configuration file. 1.1 framework

Use 'System.ConfigurationSettings.Configuration.AppSettings'. 'AppSettings'
is a property, not a class.
 
Back
Top