0
我在本節中爲相同的可執行程序集(IVITerminal.exe
)定義了自定義配置節類。在App.config中我有:在可執行文件中定義的自定義配置部分
<configSections>
....
<section name="myconfig" type="IVITermital.Configuration.Section, IVITerminal"/>
....
</configSections>
....
<myconfig>....</myconfig>
但是,當我想讀部分:
static void Main(string[] args)
{
var s = ConfigurationManager.GetSection("myconfig") as Section;
我System.Configuration.ConfigurationErrorsException
類型的異常Could not load type 'IVITermital.Configuration.Section' from assembly 'IVITerminal'.
。
是否可以在同一個exe中定義配置節?
謝謝你這是在類名錯字 – shibormot