DLLでApp.configを作成してAppSettingsにAddを追加したけど
その内容が読み込めないだけど・・・何でだ!
▼回答
次のようにすれば読むことができるよ!!
System.Configuration.Configuration config = System.Configuration.ConfigurationManager.OpenExeConfiguration(this.GetType().Module.Name);
string value = System.Configuration.ConfigurationManager.AppSettings["key"];
■関連サイト