Ich habe folgendes:C#: Wie kann sichergestellt werden, dass eine Einstellungsvariable vorhanden ist, bevor Sie versuchen, sie von einer anderen Assembly zu verwenden?
using CommonSettings = MyProject.Commons.Settings;
public class Foo
{
public static void DoSomething(string str)
{
//How do I make sure that the setting exists first?
object setting = CommonSettings.Default[str];
DoSomethingElse(setting);
}
}
https://msdn.microsoft.com/en-us/library/system.configuration.configurationmanager.appsettings.aspx –