mono,c# app.config(アプリケーション構成ファイル)の読み取り

[mono][app.config]

monoでアプリケーション構成ファイル(app.config)を使う

個人的な設定をアプリケーション構成ファイルと言うものに設定できるらしい。

過去にはSystem.Configuration.ConfigurationSetting.AppSettingsから取得していたがこれはobsoleted.

 Warning CS0618: `System.Configuration.ConfigurationSettings.AppSettings' is obsolete: `This property is obsolete.  Please use System.Configuration.ConfigurationManager.AppSettings' (CS0618) (AppSettingGettingExample)

monodevelop上でこれを有効にするには以下のnuget packageを入れるのが楽。

NuGet Gallery | System.Configuration.Abstractions 1.1.5064.25905 http://www.nuget.org/packages/System.Configuration.Abstractions/

sample code

gist8108265