2017-05-17 7 views
0

C# - ConfigurationManager.AppSettings数は0です。そしてアイデアは?コードは次のとおりです。ConfigurationManager.AppSettingsカウント0

var appSettings = ConfigurationManager.AppSettings; 

        if (appSettings.Count == 0) 
        { 
         Console.WriteLine("AppSettings is empty."); 
        } 

デバッグで実行しています。 VSはapp.configをデバッグディレクトリにコピーし、 CBCuedERI.exe.configという名前を付けます。ここで私はまた、これを試してみました

<applicationSettings> 
    <CBCuedERI.Properties.Settings> 
     <setting name="test" serializeAs="String"> 
      <value>one</value> 
     </setting> 
    </CBCuedERI.Properties.Settings> 
</applicationSettings> 

設定ファイルの一部であり、それはのappSettingsセクションのキーと値のペアのために使用されるNULL

​​

答えて

関連する問題