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
私はリンクを読んだ後にこれを試して、NULLを返しました。文字列sss = ConfigurationManager.AppSettings.Get( "test"); –