I have the following:
using CommonSettings = MyProject.Commons.Settings; public class Foo { public static void DoSomething(string str) { //How d
This is how you deal with it:
if(CommonSettings.Default.Properties[str] != null) { //Hooray, we found it! } else { //This is a 'no go' }