0
1. Verify the namespace in Settings.cs. Say for example, if it is MyProject.Utilities, import this namespace where you are using. For example, if you are trying to get connectionstring in DataAccess.cs, then use "using MyProject.Utilities" in the top
2. You can get the connectionstring by the following code
Settings.Default. <name of your key>
note: you don't have to say Properties.Settings.Default
does this help? I had the same problem before but once I resolved namespaces conflict, everything started working. good luck